我使用c#语言和Visual studio来制作Windows应用程序
我需要选择多个节点不同的父
我需要这样做
答案 0 :(得分:0)
尝试以下设置:
// 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;
希望这有帮助..