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

c# Ultratree how to selected child node different parent node

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

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

我需要这样做

试试这些设置:

        // 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;

希望对您有所帮助..