C# Класс TaskDialogInterop.TaskDialogButtonData

Provides data for all task dialog buttons.
Наследование: INotifyPropertyChanged
Показать файл Открыть проект

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

Метод Описание
TaskDialogButtonData ( ) : System

Initializes a new instance of the TaskDialogButtonData class.

TaskDialogButtonData ( int id, string text, System command = null, bool isDefault = false, bool isCancel = false ) : System

Initializes a new instance of the TaskDialogButtonData struct.

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

Метод Описание
OnPropertyChanged ( PropertyChangedEventArgs e ) : void

Raises the E:PropertyChanged event.

RaisePropertyChanged ( string propertyName ) : void

Raises the E:PropertyChanged event.

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

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

Raises the E:PropertyChanged event.
protected OnPropertyChanged ( PropertyChangedEventArgs e ) : void
e System.ComponentModel.PropertyChangedEventArgs The instance containing the event data.
Результат void

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

Raises the E:PropertyChanged event.
protected RaisePropertyChanged ( string propertyName ) : void
propertyName string The property name of the property that has changed.
Результат void

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

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

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

Initializes a new instance of the TaskDialogButtonData struct.
public TaskDialogButtonData ( int id, string text, System command = null, bool isDefault = false, bool isCancel = false ) : System
id int The id value for the button.
text string The text label.
command System The command to associate.
isDefault bool Whether the button should be the default.
isCancel bool Whether the button should be a cancel.
Результат System