AnotherApp.wxs 920 B

12345678910111213141516
  1. <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  2. <Fragment>
  3. <UI>
  4. <Dialog Id="UI_AnotherAppDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)">
  5. <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUICancel)">
  6. <Publish Event="EndDialog" Value="ErrorAbort" />
  7. </Control>
  8. <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ExitDialogBitmap)" />
  9. <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
  10. <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.AnotherAppDialogDescription)" />
  11. <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.AnotherAppDialogTitle)" />
  12. </Dialog>
  13. </UI>
  14. </Fragment>
  15. </Wix>