Interface IDialogViewModel
An interface that defines some basic mechanisms for communication between a view model and the hosting dialog UI.
Namespace: Telerik.Windows.Controls.FieldList
Assembly: Telerik.Windows.Controls.PivotFieldList.dll
Syntax
public interface IDialogViewModel
Properties
Cancel
Gets the Cancel System.Windows.Input.ICommand for this dialog.
Declaration
ICommand Cancel { get; }
Property Value
System.Windows.Input.ICommand
|
Ok
Gets the Ok System.Windows.Input.ICommand for this dialog.
Declaration
ICommand Ok { get; }
Property Value
System.Windows.Input.ICommand
|
Events
Canceled
Invoked when the used canceled any changes done through this dialog.
Declaration
event EventHandler Canceled
Event Type
System.EventHandler
|
Completed
Invoked when the used completed and confirmed the changes on this dialog.
Declaration
event EventHandler Completed
Event Type
System.EventHandler
|