c# Ultratree如何选择不同父节点的子节点
本文关键字:父节点 子节点 选择 Ultratree 何选择 | 更新日期: 2023-09-27 18:15:42
我使用c#语言和Visual studio制作windows应用程序
我需要选择多个不同父节点
我需要这样做
- 父
- 节点1 <-selected
- 节点2
- 父B
- 节点1
- 节点2 <-selected
- 父C
- 节点1 <-selected
- 节点2
尝试以下设置:
// Allow the end user to select multiple nodes.
this.ultraTreeView1.Override.SelectionType = Infragistics.Win.UltraWinTree.SelectType.Extended;
// Allow the end user to select nodes in different levels of the tree.
this.ultraTreeView1.SelectionBehavior = Infragistics.Win.UltraWinTree.SelectionBehavior.ExtendedAcrossCollections;