You need to handle the OnBeforeExpand event and set Cancel to true .
private void OnBeforeExpand(TreeViewCancelEventArgs e) { e.Cancel = true; }
Keep in mind that this will prevent the expansion of any node tree.
If you want to hide the "+/-" characters, you must set the ShowPlusMinus property to false .
source share