Is it possible to set ShowExpansionIndicator to Always only for 1st level nodes, and not child nodes?
Hello cidolfus,
Yes, this is possible. Every node level in the hierarchy has its own Override, i.e. it has its own unique settings which are overriding the controls global settings. So probably a setup like the following could suit your needs:
ultraTree1.Override.ShowExpansionIndicator = Infragistics.Win.UltraWinTree.ShowExpansionIndicator.Never; ultraTree1.Nodes[1].Override.ShowExpansionIndicator = Infragistics.Win.UltraWinTree.ShowExpansionIndicator.Always;
Please feel free to let me know if a question about our toolset comes up on your mind.
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
Solved, thanks!