Class
ModalEditor

Represents a host of a custom editor. It represents a button that opens a Window with that editor as a content.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

cs-api-definition
public class ModalEditor : CustomEditorBase

Inheritance: objectCustomEditorBaseModalEditor

Inherited Members CustomEditorBase.SourcePropertyPropertyCustomEditorBase.EditorPropertyCustomEditorBase.OnApplyTemplate()CustomEditorBase.ResetTheme()CustomEditorBase.SourcePropertyCustomEditorBase.Editor

Constructors

ModalEditor()

Initializes a new instance of the ModalEditor class.

Declaration

cs-api-definition
public ModalEditor()

Fields

ShowEditorCommand

Gets a value that represents the command executed for displaying the Window with the custom editor as a content.

Declaration

cs-api-definition
public static readonly ICommand ShowEditorCommand

Field Value

ICommand

WindowLeftProperty

Identifies the WindowLeft dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty WindowLeftProperty

Field Value

DependencyProperty

WindowStartupLocationProperty

Identifies the WindowStartupLocation dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty WindowStartupLocationProperty

Field Value

DependencyProperty

WindowTopProperty

Identifies the WindowTop dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty WindowTopProperty

Field Value

DependencyProperty

Properties

WindowLeft

Gets or sets the position of the window's left edge, in relation to the desktop.

Declaration

cs-api-definition
public double WindowLeft { get; set; }

Property Value

double

WindowStartupLocation

Gets or sets the position of the window when first shown.

Declaration

cs-api-definition
public WindowStartupLocation WindowStartupLocation { get; set; }

Property Value

WindowStartupLocation

WindowTop

Gets or sets the position of the window's top edge, in relation to the desktop.

Declaration

cs-api-definition
public double WindowTop { get; set; }

Property Value

double

Methods

OnInitialized(EventArgs)

Raises the event. This method is invoked whenever is set to true internally.

Declaration

cs-api-definition
protected override void OnInitialized(EventArgs e)

Parameters

e

EventArgs

The RoutedEventArgs that contains the event data.

Overrides CustomEditorBase.OnInitialized(EventArgs)