TreeViewControl.CustomNodeDisplayText Event
Allows you to customize the text displayed in nodes.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
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