C# 클래스 WixSharp.Controls.DialogSequence

Simple class that defines custom UI (WiX UI element). This is a specialized version of T:WixSharp.CustomUI class designed to allow simple customization of the dialogs sequence without the introduction of any custom dialogs. The following is an example demonstrates how to skip License Agreement dialog, which is otherwise displayed between Welcome and InstallDir dialogs. project.CustomUI = new DialogSequence() .On(Dialogs.WelcomeDlg, Buttons.Next, new ShowDialog(Dialogs.InstallDirDlg)) .On(Dialogs.InstallDirDlg, Buttons.Back, new ShowDialog(Dialogs.WelcomeDlg));
상속: CustomUI
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
DefaultOrder int

공개 메소드들

메소드 설명
DialogSequence ( ) : System

Initializes a new instance of the DialogSequence class.

On ( string dialog, string control ) : DialogSequence

Defines the WiX Dialog UI control Action (event handler).

Note that all handlers will have Order field automatically assigned '5' to ensure the overriding the default WiX event handlers

메소드 상세

DialogSequence() 공개 메소드

Initializes a new instance of the DialogSequence class.
public DialogSequence ( ) : System
리턴 System

On() 공개 메소드

Defines the WiX Dialog UI control Action (event handler).

Note that all handlers will have Order field automatically assigned '5' to ensure the overriding the default WiX event handlers

public On ( string dialog, string control ) : DialogSequence
dialog string The dialog.
control string The control.
리턴 DialogSequence

프로퍼티 상세

DefaultOrder 정적으로 공개적으로 프로퍼티

The default value of the Order of the DialogAction. It is automatically assigned of handler doesn't have it set.
static public int DefaultOrder
리턴 int