Class ConfirmDialogViewModel
Represents the view model for the confirmation dialog.
Inherited Members
Namespace: Telerik.Windows.Controls.ScheduleView
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class ConfirmDialogViewModel : SchedulerDialogViewModel, INotifyPropertyChanged, IDisposable
Constructors
ConfirmDialogViewModel(IScheduleViewDialogHost, IEnumerable<IOccurrence>, Func<SchedulerDialogViewModel, Nullable<Boolean>, Boolean>)
Initializes a new instance of the ConfirmDialogViewModel class.
Declaration
public ConfirmDialogViewModel(IScheduleViewDialogHost dialogHost, IEnumerable<IOccurrence> appointments, Func<SchedulerDialogViewModel, Nullable<bool>, bool> confirmDialogClose)
Parameters
IScheduleViewDialogHost
dialogHost
The ScheduleViewDialogHost. |
System.Collections.Generic.IEnumerable<IOccurrence>
appointments
The appointments. |
System.Func<SchedulerDialogViewModel, System.Nullable<System.Boolean>, System.Boolean>
confirmDialogClose
The close callback. |
Properties
Appointments
Gets the appointments collection.
Declaration
public IEnumerable<IOccurrence> Appointments { get; }
Property Value
System.Collections.Generic.IEnumerable<IOccurrence>
|