Property | Type | Description | |
---|---|---|---|
Default | |||
DialogBanner | string | ||
DialogBitmap | string | ||
Empty |
Method | Description | |
---|---|---|
BeforeBuild ( ManagedProject project ) : void |
This method is called (indirectly) by Wix# compiler just before building the MSI. It allows embedding UI specific resources (e.g. license file, properties) into the MSI.
|
|
Initialize ( Microsoft.Deployment.WindowsInstaller.Session session, string resourcePath, InstallUIOptions &uiLevel ) : bool |
Initializes the specified session.
|
|
ManagedUI ( ) : System |
Initializes a new instance of the ManagedUI class.
|
|
ProcessMessage ( InstallMessage messageType, Microsoft.Deployment.WindowsInstaller.Record messageRecord, MessageButtons buttons, MessageIcon icon, MessageDefaultButton defaultButton ) : MessageResult |
Processes information and progress messages sent to the user interface. Win32 MSI API: EmbeddedUIHandler |
|
Shutdown ( ) : void |
Shuts down the embedded UI at the end of the installation. If the installation was canceled during initialization, this method will not be called. If the installation was canceled or failed at any later point, this method will be called at the end. Win32 MSI API: ShutdownEmbeddedUI |
Method | Description | |
---|---|---|
DialogBannerFileFor ( |
||
DialogBitmapFileFor ( |
||
LicenceFileFor ( |
||
LocalizationFileFor ( |
||
ReadDialogs ( Microsoft.Deployment.WindowsInstaller.Session session ) : void |
public BeforeBuild ( ManagedProject project ) : void | ||
project | ManagedProject | The project. |
return | void |
public Initialize ( Microsoft.Deployment.WindowsInstaller.Session session, string resourcePath, InstallUIOptions &uiLevel ) : bool | ||
session | Microsoft.Deployment.WindowsInstaller.Session | The session. |
resourcePath | string | The resource path. |
uiLevel | InstallUIOptions | The UI level. |
return | bool |
public ProcessMessage ( InstallMessage messageType, Microsoft.Deployment.WindowsInstaller.Record messageRecord, MessageButtons buttons, MessageIcon icon, MessageDefaultButton defaultButton ) : MessageResult | ||
messageType | InstallMessage | Message type. |
messageRecord | Microsoft.Deployment.WindowsInstaller.Record | Record that contains message data. |
buttons | MessageButtons | Message buttons. |
icon | MessageIcon | Message box icon. |
defaultButton | MessageDefaultButton | Message box default button. |
return | MessageResult |