|
22 | 22 | <WixVariable Id="WixUIBannerBmp" Value="banner.png" />
|
23 | 23 | <UIRef Id="WixUI_Common" />
|
24 | 24 | <UI Id="MyWixUI_InstallDir">
|
25 |
| - <!-- customized WixUI_FeatureTree from Wix 4.0 - my changes commented --> |
| 25 | + <!-- customized WixUI_FeatureTree from Wix 6.0.1 - my changes commented --> |
26 | 26 | <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
|
27 | 27 | <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
|
28 | 28 | <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
|
|
40 | 40 | <DialogRef Id="ProgressDlg" />
|
41 | 41 | <DialogRef Id="ResumeDlg" />
|
42 | 42 | <DialogRef Id="UserExit" />
|
43 |
| - <!-- <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath" Order="3" /> --> |
44 |
| - <!-- <Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog" Value="InvalidDirDlg" Order="4" Condition="NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID<>"1"" /> --> |
45 | 43 |
|
46 | 44 | <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" />
|
47 | 45 |
|
|
52 | 50 | <Publish Dialog="MyLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" />
|
53 | 51 |
|
54 | 52 | <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="MyLicenseAgreementDlg" />
|
55 |
| - <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1" /> |
56 |
| - <!-- <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2" Condition="NOT WIXUI_DONTVALIDATEPATH" /> --> |
57 |
| - <!-- <Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3" Condition="NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID<>"1"" /> --> |
58 |
| - <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="4" Condition="WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1"" /> |
| 53 | + <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="3" /> |
59 | 54 | <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1" />
|
60 | 55 | <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2" />
|
| 56 | + |
| 57 | + <Publish Dialog="BrowseDlg" Control="OK" Event="SetTargetPath" Value="[_BrowseProperty]" Order="3" /> |
| 58 | + <Publish Dialog="BrowseDlg" Control="OK" Event="EndDialog" Value="Return" Order="4" /> |
| 59 | + |
61 | 60 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg" Order="1" Condition="NOT Installed" />
|
62 | 61 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2" Condition="Installed AND NOT PATCH" />
|
63 | 62 | <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" />
|
|
69 | 68 | <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" />
|
70 | 69 |
|
71 | 70 | <Property Id="ARPNOMODIFY" Value="1" />
|
| 71 | + |
72 | 72 | <Dialog Id="MyLicenseAgreementDlg" Width="370" Height="270" Title="!(loc.LicenseAgreementDlg_Title)">
|
73 | 73 | <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.LicenseAgreementDlgBannerBitmap)" />
|
74 |
| - <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" /> |
75 |
| - <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" /> |
| 74 | + <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="373" Height="0" /> |
| 75 | + <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="373" Height="0" /> |
76 | 76 | <Control Id="Description" Type="Text" X="25" Y="23" Width="340" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgDescription)" />
|
77 | 77 | <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.LicenseAgreementDlgTitle)" />
|
78 | 78 | <!-- removed the checkbox and the "Print" button, replaced the "Next" button with "I Accept" -->
|
|
0 commit comments