Skip to main content
All docs
V25.1
  • TreeViewControl.NodeContentDisplayTemplate Property

    Gets or sets a template that displays node values. This is a dependency property.

    Namespace: DevExpress.Xpf.Grid

    Assembly: DevExpress.Xpf.Grid.v25.1.dll

    NuGet Package: DevExpress.Wpf.Grid.Core

    Declaration

    public DataTemplate NodeContentDisplayTemplate { get; set; }

    Property Value

    Type Description
    DataTemplate

    The template that displays node values. The template’s data context is an EditGridCellData object.

    Remarks

    You can use separate in-place editors to display and edit data. The TreeViewControl includes templates that allow you to define editors that display (when the control is in browse mode) and edit (when the control is in edit mode) node values:

    Template Description
    NodeContentDisplayTemplate The template that displays node values.
    NodeContentEditTemplate The template that displays an editor used to edit node values.

    Specify the NodeContentTemplate property if you want to use the same template to display and edit data.

    Example

    The following code sample displays wrapped text but does not wrap that text in the editor:

    <dxg:TreeViewControl ..."
                         AllowEditing="True">
        <dxg:TreeViewControl.NodeContentDisplayTemplate>
            <DataTemplate>
                <dxe:TextEdit x:Name="PART_Editor" TextWrapping="Wrap" MaxWidth="100"/>
            </DataTemplate>
        </dxg:TreeViewControl.NodeContentDisplayTemplate>
    </dxg:TreeViewControl>
    

    If you have more than one display template, use the NodeContentDisplayTemplateSelector property to implement custom logic to choose the required template.

    Tip

    See Also