接上一篇自定义安装界面,这篇继续探索,首先介绍下,Wix为我们定义了五种风格,每种风格的UI都是有一定顺序的。我们可以改变安装顺序,也可以完全自定义一个Dialog插入其中。比如Wix_Mondo 风格的顺序就如下,但不一定每个dialog会在安装的时候展示。

BrowseDlg 
CustomizeDlg 
DiskCostDlg 
LicenseAgreementDlg 
SetupTypeDlg 
WelcomeDlg 
In addition, WixUI_Mondo includes the following common dialogs that appear in all WixUI dialog sets:

CancelDlg 
ErrorDlg 
ExitDlg 
FatalError 
FilesInUse 
MaintenanceTypeDlg 
MaintenanceWelcomeDlg 
MsiRMFilesInUse 
OutOfDiskDlg 
OutOfRbDiskDlg 
PrepareDlg 
ProgressDlg 
ResumeDlg 
UserExit 
VerifyReadyDlg 
WaitForCostingDlg 
View Code

相关文章: