简体   繁体   中英

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM