Replies: 2 comments 2 replies
-
OK, this is my bad. I could able to change ManagedUI's images like following; project.LicenceFile = @"Resources\LICENSE.rtf";
project.BackgroundImage = @"Resources\installer-dialog.png";
project.BannerImage = @"Resources\installer-banner.png"; |
Beta Was this translation helpful? Give feedback.
1 reply
-
If you are using WixSharp stock WPF dialogs then it seems to work. I have attached the code sample. However, if you are using WiX3 version of the WixSharp VS template for "WPF Custom UI" then the template has a mistake. // wrong
public BitmapImage Banner => session?.GetResourceBitmap("WixSharpUI_Bmp_Banner").ToImageSource();
// right
public BitmapImage Banner => session?.GetResourceBitmap("WixUI_Bmp_Banner").ToImageSource(); This mistake came from the WiX stream accidentally. In the attached sample I have also corrected it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In ManagedUI class, I see the following lines adding Binary files to the project.
I have tried to customize that but couldn't able to do it. Is it possible to check current binary files and add them if they are not exists @oleg-shilo ?
Like this;
Beta Was this translation helpful? Give feedback.
All reactions