Inno Setup 更改小向导图像位置和大小
Inno Setup change Small Wizard Image position and size
我已经阅读了问题 How to change the size of small wizard image and have custom fields in inno setup,但仍然不清楚如何使用 WizardForm.WizardSmallBitmapImage
实际更改小向导图像的大小和位置。有人可以更详细地解释一下吗?我正在尝试删除图像右侧的白色小列 and/or 增加图像的宽度。
WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Right - 55;
好像不行。
要去除默认大小的小向导图像右侧的白色space,您可以使用以下代码:
WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Left + WizardForm.ClientWidth - 55;
我已经阅读了问题 How to change the size of small wizard image and have custom fields in inno setup,但仍然不清楚如何使用 WizardForm.WizardSmallBitmapImage
实际更改小向导图像的大小和位置。有人可以更详细地解释一下吗?我正在尝试删除图像右侧的白色小列 and/or 增加图像的宽度。
WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Right - 55;
好像不行。
要去除默认大小的小向导图像右侧的白色space,您可以使用以下代码:
WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Left + WizardForm.ClientWidth - 55;