New to Telerik UI for WPFStart a free 30-day trial

An Editor that will try to open a dialog using a host request trough RequestDialog.

Definition

Namespace:Telerik.Windows.Controls.FieldList

Assembly:Telerik.Windows.Controls.PivotFieldList.dll

Syntax:

C#
public abstract class DialogEditor : Editor

Inheritance: objectEditorDialogEditor

Derived Classes: DoubleGroupStepEditorItemsSetFilterEditorLabelFilterEditorShowFieldListEditorSortingEditorStringFormatEditorSummarizationEditorTop10FilterEditorTotalFormatEditorValueFilterEditor...

Inherited Members Editor.Command

Constructors

Initializes a new instance of the DialogEditor class.

C#
protected DialogEditor(ICommand command)
Parameters:commandICommand

The command.

Methods

Determines if the editing can occur.

C#
protected override sealed bool CanExecute(object sender, object parameter)
Parameters:senderobject

The sender.

parameterobject

The parameter.

Returns:

bool

Overrides: Editor.CanExecute(object, object)

Handles editing execution. Changes properties of the .

C#
protected override sealed void Execute(object sender, object parameter)
Parameters:senderobject

The sender.

parameterobject

The parameter.

Overrides: Editor.Execute(object, object)

Checks if the editor can handle the editing of the parameter.

C#
protected virtual bool OnDialogCanExecute(object parameter)
Parameters:parameterobject

The parameter.

Returns:

bool

True if the parameter could be edited, false - otherwise.

Define the DialogInfo properties that should be used to open an editing UI for the parameter.

C#
protected abstract DialogInfo OnDialogExecuted(object parameter)
Parameters:parameterobject

The object to edit.

Returns:

DialogInfo

The DialogInfo for which a dialog host will be requested.