C# Класс WixSharp.UI.Forms.ProgressDialog

Показать файл Открыть проект

Открытые методы

Метод Описание
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

Защищенные методы

Метод Описание
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).

Приватные методы

Метод Описание
InitializeComponent ( ) : void

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

Описание методов

Dispose() защищенный Метод

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
Результат void

OnExecuteComplete() публичный Метод

Called when MSI execution is complete.
public OnExecuteComplete ( ) : void
Результат void

OnProgress() публичный Метод

Called when MSI execution progress is changed.
public OnProgress ( int progressPercentage ) : void
progressPercentage int The progress percentage.
Результат void

OnShellChanged() защищенный Метод

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
Результат void

ProcessMessage() публичный Метод

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.
Результат MessageResult

ProgressDialog() публичный Метод

Initializes a new instance of the ProgressDialog class.
public ProgressDialog ( ) : System
Результат System

ProgressDialog_Load() публичный Метод

public ProgressDialog_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void

cancel_Click() публичный Метод

public cancel_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void