rharrison33
rharrison33

Reputation: 1282

Wix UI: How to increase the width of built-in UIs such as WixUI_Minimal?

Is it possible to increase the width of a built-in Wix UI such as WixUI_Minimal in one easy attribute?

Upvotes: 2

Views: 187

Answers (1)

Yan Sklyarenko
Yan Sklyarenko

Reputation: 32240

No, you'll have to increase the width of each and every dialog separately. Besides, don't forget to adjust the dimensions of the banners, but this can be done in one place:

<WixVariable Id="WixUIBannerBmp" Value="$(var.ImgPath)\NEW-BANNER.bmp"/>
<WixVariable Id="WixUIDialogBmp" Value="$(var.ImgPath)\NEW-BACKGROUND.bmp"/>

Upvotes: 2

Related Questions