wpf-devexpress-dot-xpf-dot-editors-dot-baseedit-1c02e122.md
Gets the editor’s actual template. This is a dependency property.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public ControlTemplate ActualEditorControlTemplate { get; protected set; }
Public Property ActualEditorControlTemplate As ControlTemplate
| Type | Description |
|---|---|
| ControlTemplate |
A ControlTemplate object that represents the editor’s template.
|
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