Skip to main content
A newer version of this page is available. .

TextEdit.EditNonEditableTemplate Property

Gets or sets a template that defines the in-place editor’s presentation when the editor is active, but its text field is not editable. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Editors

Assembly: DevExpress.UI.Xaml.Editors.v18.2.dll

Declaration

public DataTemplate EditNonEditableTemplate { get; set; }

Property Value

Type Description
Windows.UI.Xaml.DataTemplate

A Windows.UI.Xaml.Controls.ControlTemplate object representing the editor’s template.

Remarks

The template specified via the EditNonEditableTemplate property is applied to the editor’s text field when its TextEdit.IsTextEditable property is set to false. In this instance, the editor’s text field cannot be edited, and an end-user can change the editor’s value only by choosing it from the drop-down list.

Note

The EditNonEditableTemplate template supports only the Windows.UI.Xaml.Controls.TextBox control.

See Also