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>
source share