Inno Setup更改小向导图像的位置和大小

时间:2015-06-24 11:29:27

标签: inno-setup

我已经阅读了问题How to change the size of small wizard image and have custom fields in inno setup,但仍不清楚如何使用WizardForm.WizardSmallBitmapImage实际更改小向导图像的大小和位置。有人可以更详细地解释一下吗?我试图将小白柱移到图像的右侧和/或增加图像的宽度。

WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Right - 55;

似乎不起作用。

1 个答案:

答案 0 :(得分:1)

要删除默认大小的小向导图像右侧的空白区域,可以使用以下代码:

WizardForm.WizardSmallBitmapImage.Left := WizardForm.InfoBeforePage.Left + WizardForm.ClientWidth - 55;