Skip to main content
All docs
V23.2

TreeViewControl.NodeContentDisplayTemplateSelector Property

Gets or sets an object that chooses a node value template based on custom logic. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public DataTemplateSelector NodeContentDisplayTemplateSelector { get; set; }

Property Value

Type Description
DataTemplateSelector

A DataTemplateSelector descendant that chooses a template based on custom logic.

Remarks

The NodeContentDisplayTemplate property specifies a template that displays node values. If you have more than one display template, you can implement custom logic to choose the required template:

  1. Create a template selector - a class that chooses a template based on a condition. This class should derive from the DataTemplateSelector class.
  2. Override the SelectTemplate method to return a template that meets the required condition.
  3. Assign the template selector class instance to the NodeContentDisplayTemplateSelector property.

If you specify both the NodeContentDisplayTemplate and NodeContentDisplayTemplateSelector, the TreeViewControl uses the template returned by the template selector.

If the template selector returns null, the TreeViewControl uses the template specified by the NodeContentDisplayTemplate property.

See Also