Back to Devexpress

TreeListView.NodeFooterRowTemplateSelector Property

wpf-devexpress-dot-xpf-dot-grid-dot-treelistview-798bc112.md

latest2.5 KB
Original Source

TreeListView.NodeFooterRowTemplateSelector Property

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

Namespace : DevExpress.Xpf.Grid

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

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public DataTemplateSelector NodeFooterRowTemplateSelector { get; set; }
vb
Public Property NodeFooterRowTemplateSelector As DataTemplateSelector

Property Value

TypeDescription
DataTemplateSelector

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

|

Remarks

A template that defines the presentation of node footer rows is specified by the TreeListView.NodeFooterRowTemplate property. If you have more than one template that can be used to render node footer rows, you can implement custom logic to choose the required template. To do this, derive from the DataTemplateSelector class, implement the SelectTemplate method that returns a template which meets the required condition, and assign it to the NodeFooterRowTemplateSelector property.

If both the TreeListView.NodeFooterRowTemplate and NodeFooterRowTemplateSelector are specified, row details are rendered using the template returned by the template selector. If the template selector returns null , the template specified by the TreeListView.NodeFooterRowTemplate property is used.

To learn more, see Choosing Templates Based on Custom Logic.

See Also

TreeListView Class

TreeListView Members

DevExpress.Xpf.Grid Namespace