Wix User Dialog

We currently have a classic theme (Wix) for our installation wizard. Now we plan to improve the appearance of the installer.

1) How can I change the classic themes of a user dialog to something else.

2). When installing our installation, we plan to show some images, such as a slide show. Is it possible to display images like this on Wix. Should I create any custom trigger to show images. Can you show some examples of this?

+4
source share
1 answer

How can I change the custom theme classic dialog for something else.

Check out this other answer , where I am looking at everything you need to do to create a custom warning dialog and insert it into the user interface UI sequence.

When installing our installation, we have plans to show some images, such as slide shows. Is it possible to show images like this in Wix. I need to create any custom trigger to show images

Here's what BillBoardAction and BillBoard are for items. To display bitmaps during the installation of the files, I think you would put something like this in the definition of the UI sequence (I have not tested it):

<BillboardAction Id="InstallFiles"> <Billboard Id="FirstBillboard" Feature="FeatureA"> <Control Id="FirstBitmap" Type="Bitmap" Height="300" Width="300" X="0" Y="0"> <Binary Id="HelloWorld.bmp" SourceFile="setupImages\HelloWorld.bmp"/> </Control> </Billboard> <Billboard Id="SecondBillboard" Feature="FeatureB"> <Control Id="SecondBitmap" Type="Bitmap" Height="300" Width="300" X="0" Y="0"> <Binary Id="HelloAgain.bmp" SourceFile="setupImages\HelloAgain.bmp"/> </Control> </Billboard> </BillboardAction> 
+5
source

Source: https://habr.com/ru/post/1308753/


All Articles