Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 AdvTree 上选择 Ctrl + A 上的所有节点。它设置为允许多选。
我有事件 PreviewKeyDown 来检查 ctrl,并且按下了 A。
我试过这个:
For Each nd As Node In tvComputers.Nodes nd.SetSelectedCell(nd.Cells(0), Nothing) Next
但它只选择树中的最后一项,它似乎没有添加到选定列表中
没关系,如果找到它,但我认为我无法让其他人看到,因为我在任何地方都找不到
For Each nd As Node In tvComputers.Nodes tvComputers.SelectedNodes.Add(nd) Next