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