Hi, Oleg!
I have a managed project with standart UI. I detedted a bug in setting BackgroundImage.
When I set up BackgroundImage with dimensions 493312(standart size) BuildWxs return null.
When I set up BackgroundImage with dimensions 493493 or 164*312, it's OK. But BackgroundImage is resized all over the form.
var project = new ManagedProject("My product",
project.BackgroundImage = @"images\dialog_bmp.png"; project.BannerImage = @"images\dialog_banner.png"; return project.BuildWxs();
I have a managed project with standart UI. I detedted a bug in setting BackgroundImage.
When I set up BackgroundImage with dimensions 493312(standart size) BuildWxs return null.
When I set up BackgroundImage with dimensions 493493 or 164*312, it's OK. But BackgroundImage is resized all over the form.
var project = new ManagedProject("My product",
new Dir(@"%ProgramFiles%\My product\",
new Files(@"Product\*.*"))));
project.UI = WUI.WixUI_InstallDir;project.BackgroundImage = @"images\dialog_bmp.png"; project.BannerImage = @"images\dialog_banner.png"; return project.BuildWxs();