TreeViewControl.NodeTemplateSelector Property
Gets or sets an object that chooses a template for data nodes based on custom logic. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
Property Value
Type | Description |
---|---|
DataTemplateSelector | A DataTemplateSelector descendant that chooses a template based on custom logic. |
Remarks
The TreeViewControl.NodeTemplate property specifies a template that defines the appearance of data nodes. If you have more than one node template, you can implement custom logic to choose the required template:
- Create a template selector - a class that chooses a template based on the condition. This class should derive from the DataTemplateSelector class.
- Override the SelectTemplate method to return a template that meets the required condition.
- Assign the instance of the template selector class to the NodeTemplateSelector property.
If you specify both the TreeViewControl.NodeTemplate and NodeTemplateSelector, the TreeViewControl uses the template returned by the template selector.
If the template selector returns null, the TreeViewControl uses the template specified by the TreeViewControl.NodeTemplate property.