Class DialogEventArgs
Contains information about the dialog which is going to be shown. It can be canceled.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class DialogEventArgs : CancelRoutedEventArgs
Constructors
DialogEventArgs(RoutedEvent, Object, SchedulerDialogViewModel)
Initializes a new instance of the DialogEventArgs class.
Declaration
public DialogEventArgs(RoutedEvent routedEvent, object source, SchedulerDialogViewModel dialogViewModel)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Object
source
The source of the event. |
SchedulerDialogViewModel
dialogViewModel
The view model of the dialog to be shown. |
DialogEventArgs(RoutedEvent, SchedulerDialogViewModel)
Initializes a new instance of the DialogEventArgs class.
Declaration
public DialogEventArgs(RoutedEvent routedEvent, SchedulerDialogViewModel dialogViewModel)
Parameters
RoutedEvent
routedEvent
The routed event. |
SchedulerDialogViewModel
dialogViewModel
The view model of the dialog to be shown. |
Properties
DialogViewModel
Gets or sets the view model of the dialog.
Declaration
public SchedulerDialogViewModel DialogViewModel { get; set; }
Property Value
SchedulerDialogViewModel
|