inno-setup – Inno Setup – 如何在安装时隐藏某些文件名? (FilenameLabel)

前端之家收集整理的这篇文章主要介绍了inno-setup – Inno Setup – 如何在安装时隐藏某些文件名? (FilenameLabel)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在安装时隐藏某些文件名(不是全部)(FilenameLabel).

我看到这个Hide the file names from the Inno Setup progress page.这可能吗?

解决方法

你有一些选择:

>唯一可靠的解决方案是使用[Files]部分避免安装您不想显示文件.请使用代码安装它们.使用ExtractTemporaryFileFileCopy功能.

有关实现的示例,请参阅:

> 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?

原文链接:https://www.f2er.com/delphi/103104.html

猜你在找的Delphi相关文章