Inno Setup remove/hide(不仅仅是禁用)向导页面上的后退按钮
Inno Setup remove/hide (not just disable) the Back button on a Wizard Page
我知道可以使用以下代码禁用向导页面上的后退按钮(因此它显示为灰色):
procedure CurPageChanged(CurPageID: Integer);
begin
//Define whether the Back button is enabled
if CurPageID = UnlockCodePage.ID then
begin
WizardForm.BackButton.Enabled := False;
end;
end;
但是,有没有办法完全 remove/hide 后退按钮,完全看不到它?
您应该可以使用 Button.Visible
属性:
if CurPageID = UnlockCodePage.ID then
WizardForm.BackButton.Visible := False;
我知道可以使用以下代码禁用向导页面上的后退按钮(因此它显示为灰色):
procedure CurPageChanged(CurPageID: Integer);
begin
//Define whether the Back button is enabled
if CurPageID = UnlockCodePage.ID then
begin
WizardForm.BackButton.Enabled := False;
end;
end;
但是,有没有办法完全 remove/hide 后退按钮,完全看不到它?
您应该可以使用 Button.Visible
属性:
if CurPageID = UnlockCodePage.ID then
WizardForm.BackButton.Visible := False;