C# Class WixSharp.UI.Forms.ProgressDialog

Afficher le fichier Open project: Eun/WixSharp

Méthodes publiques

Méthode Description
OnExecuteComplete ( ) : void

Called when MSI execution is complete.

OnProgress ( int progressPercentage ) : void

Called when MSI execution progress is changed.

ProcessMessage ( InstallMessage messageType, Record messageRecord, MessageButtons buttons, MessageIcon icon, MessageDefaultButton defaultButton ) : MessageResult

Processes the message.

ProgressDialog ( ) : System

Initializes a new instance of the ProgressDialog class.

ProgressDialog_Load ( object sender, EventArgs e ) : void
cancel_Click ( object sender, EventArgs e ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnShellChanged ( ) : void

Called when Shell is changed. It is a good place to initialize the dialog to reflect the MSI session (e.g. localize the view).

Private Methods

Méthode Description
InitializeComponent ( ) : void

Required method for Designer support - do not modify the contents of this method with the code editor.

Method Details

Dispose() protected méthode

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
Résultat void

OnExecuteComplete() public méthode

Called when MSI execution is complete.
public OnExecuteComplete ( ) : void
Résultat void

OnProgress() public méthode

Called when MSI execution progress is changed.
public OnProgress ( int progressPercentage ) : void
progressPercentage int The progress percentage.
Résultat void

OnShellChanged() protected méthode

Called when Shell is changed. It is a good place to initialize the dialog to reflect the MSI session (e.g. localize the view).
protected OnShellChanged ( ) : void
Résultat void

ProcessMessage() public méthode

Processes the message.
public ProcessMessage ( InstallMessage messageType, Record messageRecord, MessageButtons buttons, MessageIcon icon, MessageDefaultButton defaultButton ) : MessageResult
messageType InstallMessage Type of the message.
messageRecord Record The message record.
buttons MessageButtons The buttons.
icon MessageIcon The icon.
defaultButton MessageDefaultButton The default button.
Résultat MessageResult

ProgressDialog() public méthode

Initializes a new instance of the ProgressDialog class.
public ProgressDialog ( ) : System
Résultat System

ProgressDialog_Load() public méthode

public ProgressDialog_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat void

cancel_Click() public méthode

public cancel_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat void