How to restrict the Editable option for TreeViewItemAdv in WPF TreeViewAdv?
Setting the IsEditable property
In WPF TreeViewAdv , the default value of the IsEditable property is True. You can edit the particular TreeViewItemAdv by double-clicking the item. You can restrict the Edit mode of TreeViewItemAdv by setting the IsEditable property as False.
<syncfusion:TreeViewAdv>
<syncfusion:TreeViewItemAdv x:Name="treeViewItem"
IsEditable="False"
Header="Root1" />
</syncfusion:TreeViewAdv>treeViewItem.IsEditable = false;