Laila
Laila

Reputation: 649

Customizing the dialog image and banner image in WIX installer

I had Created wix installer project to my C# windows forms application.

I am new in using wix Toolset. I am wondering if there is anything like theme file, from which I can change the dialog image and banner image, as I need to distribute this installer for different customers, and I should set the look and feel of their logo. I want them to feel like this installer is customized specially for them.

I mean, I don't want to change the dialog image and the banner image each time from inside .wxs file. I imagine that there may be something like a .theme file from which I can set the images every time I need to change it.

Upvotes: 3

Views: 7359

Answers (1)

Arkady Sitnitsky
Arkady Sitnitsky

Reputation: 1886

In order to change the image and the banner you should use:

<WixVariable Id="WixUIBannerBmp" Value="$(var.ResourcesDir)bannrbmp.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="$(var.ResourcesDir)BackgroundImage.bmp" />

Different files for different customers.

There is no theme file you can change every time you need to change.

Upvotes: 11

Related Questions