Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseEdit.ActualEditorControlTemplate Property

Gets the editor’s actual template. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public ControlTemplate ActualEditorControlTemplate { get; protected set; }

#Property Value

Type Description
ControlTemplate

A ControlTemplate object that represents the editor’s template.

#Remarks

The ActualEditorControlTemplate property returns a template which is currently active for the editor. For instance, if the editor is used by a grid for inplace editing, and its owning cell isn’t edited (the display mode), the ActualEditorControlTemplate property returns the template specified by the BaseEdit.DisplayTemplate property.

To customize the editor’s templates, use the BaseEdit.DisplayTemplate, BaseEdit.EditTemplate and TextEditBase.EditNonEditableTemplate properties.

See Also