inno-setup – 隐藏Inno Setup进度页面中的文件名

前端之家收集整理的这篇文章主要介绍了inno-setup – 隐藏Inno Setup进度页面中的文件名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从安装进度条上方的标签中隐藏或删除正在安装的文件名称,只留下“ex:install”?

显示文件正在解压缩.

LabelCurrFileName.Caption :=
  ExpandConstant('{cm:ExtractedFile} ') + 
  MinimizePathName(
    CurrentFile,LabelCurrFileName.Font,LabelCurrFileName.Width - ScaleX(100));

LabelCurrFileName.Caption := ExpandConstant('{cm:ExtractedFile} ');

解决方法

我想你想用你的自定义标签替换 FilenameLabel标签.如何为不同语言指定自定义文本以及如何将它们与自定义标签一起使用,而不是您可以在以下脚本中找到的 FilenameLabel标签
[Languages]
Name: en; MessagesFile: "compiler:Default.isl"
Name: br; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl"

[CustomMessages]
en.InstallingLabel=Installing...
br.InstallingLabel=Instalando...

[Code]

procedure InitializeWizard;
begin
  with TNewStaticText.Create(WizardForm) do
  begin
    Parent := WizardForm.FilenameLabel.Parent;
    Left := WizardForm.FilenameLabel.Left;
    Top := WizardForm.FilenameLabel.Top;
    Width := WizardForm.FilenameLabel.Width;
    Height := WizardForm.FilenameLabel.Height;
    Caption := ExpandConstant('{cm:InstallingLabel}');
  end;
  WizardForm.FilenameLabel.Visible := False;
end;

@MartinPrikryl编辑:有关完整实现,请参阅Inno Setup – How to create a personalized FilenameLabel with the names I want?

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

猜你在找的Delphi相关文章