Inno Setup删除/隐藏(不只是禁用)向导页面上的“后退”按钮

时间:2015-02-04 17:01:28

标签: inno-setup

我知道可以使用以下代码禁用(因此它显示为灰色)向导页面上的“后退”按钮:

procedure CurPageChanged(CurPageID: Integer);
begin
//Define whether the Back button is enabled
  if CurPageID = UnlockCodePage.ID then
    begin
      WizardForm.BackButton.Enabled := False;
    end;
end;

但是,有没有办法真正完全删除/隐藏“后退”按钮,以便根本无法看到它?

1 个答案:

答案 0 :(得分:3)

您应该可以使用Button.Visible属性:

if CurPageID = UnlockCodePage.ID then
  WizardForm.BackButton.Visible := False;