我想在安装时隐藏某些文件名(不是全部)(FilenameLabel).
我看到这个Hide the file names from the Inno Setup progress page.这可能吗?
解决方法
你有一些选择:
>唯一可靠的解决方案是使用[Files]部分避免安装您不想显示的文件.请使用代码安装它们.使用ExtractTemporaryFile
和FileCopy
功能.
有关实现的示例,请参阅:
> Install file in Inno Setup Pascal code using FileCopy function (not to show the installation on wizard form)或
> Inno Setup – Avoid displaying filenames of sub-installers.
>或者从CurInstallProgressChanged中的FilenameLabel隐藏您不想显示的文件.虽然这仍然可能会简要地显示名称.
>或者隐藏实际标签并创建自定义标签,如Hide the file names from the Inno Setup progress page所示.在CurInstallProgressChanged中,复制文件名,要从隐藏显示到自定义标签.
见Inno Setup – How to create a personalized FilenameLabel with the names I want?