c# Ultratree如何选择不同父节点的子节点
c# Ultratree how to selected child node different parent node
我使用 c# 语言和 Visual studio 制作 windows 应用程序
我需要选择多个不同父节点的节点
我需要这样做
- 家长A
- 节点 1 <-已选择
- 节点 2
- 家长B
- 节点 1
- 节点 2 <-已选择
- 父C
- 节点 1 <-已选择
- 节点 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;
希望对您有所帮助..
我使用 c# 语言和 Visual studio 制作 windows 应用程序
我需要选择多个不同父节点的节点
我需要这样做
- 家长A
- 节点 1 <-已选择
- 节点 2
- 家长B
- 节点 1
- 节点 2 <-已选择
- 父C
- 节点 1 <-已选择
- 节点 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;
希望对您有所帮助..