C# 클래스 SevenSoftware.Windows.Dialogs.TaskDialog.TaskDialogButtonBase

Defines the abstract base class for task dialog buttons. Classes that inherit from this class will inherit the Text property defined in this class.
ContentProperty allows us to specify the text of the button as the child text of a button element in XAML, as well as explicitly set with 'Text=""' Note that this attribute is inherited, so it applies to command-links and radio buttons as well.
상속: TaskDialogControl
파일 보기 프로젝트 열기: robertbaker/SevenUpdate 1 사용 예제들

공개 메소드들

메소드 설명
ToString ( ) : string

Returns the Text property value for this button.

보호된 메소드들

메소드 설명
TaskDialogButtonBase ( ) : System

Initializes a new instance of the TaskDialogButtonBase class. Creates a new instance on a task dialog button.

TaskDialogButtonBase ( string name, string text ) : System

Initializes a new instance of the TaskDialogButtonBase class. Creates a new instance on a task dialog button with the specified name and text.

비공개 메소드들

메소드 설명
RaiseClickEvent ( ) : void

Raises the click event.

메소드 상세

TaskDialogButtonBase() 보호된 메소드

Initializes a new instance of the TaskDialogButtonBase class. Creates a new instance on a task dialog button.
protected TaskDialogButtonBase ( ) : System
리턴 System

TaskDialogButtonBase() 보호된 메소드

Initializes a new instance of the TaskDialogButtonBase class. Creates a new instance on a task dialog button with the specified name and text.
protected TaskDialogButtonBase ( string name, string text ) : System
name string The name for this button.
text string The label for this button.
리턴 System

ToString() 공개 메소드

Returns the Text property value for this button.
public ToString ( ) : string
리턴 string