From 838929e3a4e7fbe68ba4052cdb8ae01eb026e0cb Mon Sep 17 00:00:00 2001 From: Sreemon Premkumar M Date: Fri, 22 Aug 2025 16:58:41 +0530 Subject: [PATCH] ES-975464 - Resolve the ReadMe issue in this sample repository --- README.md | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 61 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d806f58..85df898 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,61 @@ -# How to populate nodes without binding data as unbound mode in wpf treeview? -This repository describes how to populate nodes without binding data as unbound mode in wpf treeview +# How to populate nodes without binding data as unbound mode in WPF TreeView + +This repository describes how to populate nodes without binding data as unbound mode in WPF TreeView (SfDataGrid). + +You can create and manage the [TreeViewNode](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeView.Engine.TreeViewNode.html) objects by yourself to display the data in a hierarchical view. To create a tree view, you use a `SfTreeView` control and a hierarchy of `TreeViewNode` objects. You create the node hierarchy by adding one or more root nodes to the SfTreeView.Nodes collection. Each `TreeViewNode` can have more nodes added to its Children collection. You can nest tree view nodes to whatever depth you require. + +``` xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +``` \ No newline at end of file