c#Ultratree如何选择子节点不同的父节点

时间:2016-11-01 10:29:14

标签: c# infragistics ultratree

我使用c#语言和Visual studio来制作Windows应用程序

我需要选择多个节点不同的父

我需要这样做

  • 父母A.
    • 节点1< -selected
    • node 2
  • 父母B.
    • 节点1
    • 节点2< -selected
  • 父母C.
    • 节点1< -selected
    • node 2

1 个答案:

答案 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;

希望这有帮助..