我需要在整个位图区域中拉伸Inno Setup中的小向导图像,并隐藏“选择安装文件夹”等标签......等等。相应的代码是什么?
答案 0 :(得分:0)
WizardSmallBitmapImage
的边界设置为其父PageDescriptionLabel
和PageNameLabel
)procedure InitializeWizard();
begin
with WizardForm.WizardSmallBitmapImage do
SetBounds(Parent.Left, Parent.Top, Parent.Width, Parent.Height);
WizardForm.PageDescriptionLabel.Visible := False;
WizardForm.PageNameLabel.Visible := False;
end;