Skip to main content
All docs
V23.2

TreeViewControl.CustomNodeDisplayText Event

Allows you to customize the text displayed in nodes.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public event TreeViewCustomNodeDisplayTextEventHandler CustomNodeDisplayText

Event Data

The CustomNodeDisplayText event's data class is DevExpress.Xpf.Grid.TreeList.TreeViewCustomNodeDisplayTextEventArgs.

Remarks

<dxg:TreeViewControl x:Name="treeview"
                     CustomNodeDisplayText="treeview_CustomNodeDisplayText"
                     ...>
void treeview_CustomNodeDisplayText(object sender, DevExpress.Xpf.Grid.TreeList.TreeViewCustomNodeDisplayTextEventArgs e) {
    if (e.DisplayText == "Operations") e.DisplayText = "Operations Department";
    if (e.Node.IsLast && e.Node.Level == 0) e.DisplayText = "NodeLast";
}
See Also