C# Class WixSharp.UI.Forms.ProgressDialog

Exibir arquivo Open project: Eun/WixSharp

Public Methods

Method 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

Protected Methods

Method 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

Method Description
InitializeComponent ( ) : void

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

Method Details

Dispose() protected method

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

OnExecuteComplete() public method

Called when MSI execution is complete.
public OnExecuteComplete ( ) : void
return void

OnProgress() public method

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

OnShellChanged() protected method

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
return void

ProcessMessage() public method

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.
return MessageResult

ProgressDialog() public method

Initializes a new instance of the ProgressDialog class.
public ProgressDialog ( ) : System
return System

ProgressDialog_Load() public method

public ProgressDialog_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void

cancel_Click() public method

public cancel_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void