Class CloseDialogEventArgs
Contains state information about the dialog that is going to be closed.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class CloseDialogEventArgs : DialogEventArgs
Constructors
CloseDialogEventArgs(RoutedEvent, SchedulerDialogViewModel, Nullable<Boolean>)
Initializes a new instance of the CloseDialogEventArgs class.
Declaration
public CloseDialogEventArgs(RoutedEvent routedEvent, SchedulerDialogViewModel dialogViewModel, Nullable<bool> dialogResult)
Parameters
RoutedEvent
routedEvent
The routed event. |
SchedulerDialogViewModel
dialogViewModel
The view model of the dialog to be closed. |
System.Nullable<System.Boolean>
dialogResult
The dialog result of the dialog to be closed. |
Properties
DialogResult
Gets the DialogResult when closing the dialog. Null - escape or close button is clicked. True - enter or OK button is clicked. False - Cancel button is clicked.
Declaration
public Nullable<bool> DialogResult { get; }
Property Value
System.Nullable<System.Boolean>
|