我知道可以使用以下代码禁用(因此它显示为灰色)向导页面上的“后退”按钮:
procedure CurPageChanged(CurPageID: Integer);
begin
//Define whether the Back button is enabled
if CurPageID = UnlockCodePage.ID then
begin
WizardForm.BackButton.Enabled := False;
end;
end;
但是,有没有办法真正完全删除/隐藏“后退”按钮,以便根本无法看到它?
答案 0 :(得分:3)
您应该可以使用Button.Visible
属性:
if CurPageID = UnlockCodePage.ID then
WizardForm.BackButton.Visible := False;