Class DialogEditor
An Editor that will try to open a dialog using a host request trough RequestDialog.
Inherited Members
Namespace: Telerik.Windows.Controls.FieldList
Assembly: Telerik.Windows.Controls.PivotFieldList.dll
Syntax
public abstract class DialogEditor : Editor
Constructors
DialogEditor(ICommand)
Initializes a new instance of the DialogEditor class.
Declaration
protected DialogEditor(ICommand command)
Parameters
System.Windows.Input.ICommand
command
The command. |
Methods
CanExecute(Object, Object)
Determines if the editing can occur.
Declaration
protected override sealed bool CanExecute(object sender, object parameter)
Parameters
System.Object
sender
The sender. |
System.Object
parameter
The parameter. |
Returns
System.Boolean
|
Overrides
Execute(Object, Object)
Handles editing execution. Changes properties of the Parameter.
Declaration
protected override sealed void Execute(object sender, object parameter)
Parameters
System.Object
sender
The sender. |
System.Object
parameter
The parameter. |
Overrides
OnDialogCanExecute(Object)
Checks if the editor can handle the editing of the parameter.
Declaration
protected virtual bool OnDialogCanExecute(object parameter)
Parameters
System.Object
parameter
The parameter. |
Returns
System.Boolean
True if the parameter could be edited, false - otherwise. |
OnDialogExecuted(Object)
Define the DialogInfo properties that should be used to open an editing UI for the parameter
.
Declaration
protected abstract DialogInfo OnDialogExecuted(object parameter)
Parameters
System.Object
parameter
The object to edit. |
Returns
DialogInfo
The DialogInfo for which a dialog host will be requested. |