I am using WIX 3.5 to build my installer. I Want to show one image while current feature is being installed and other image once that feature installation is completed.
I am using BillBoard and the code snippets is :<BillboardAction Id="InstallFiles">
<Billboard Id="BB1" Feature="ProductFeature">
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" FixedSize="yes" Width="20" Height="17" Text="Image8" />
</Billboard>
</BillboardAction>
Billboards can't be used like that. Features control what happens during actions like InstallFiles but each action runs only once, regardless of which features are selected.
精彩评论