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.
NodeClickイベントが発生するように、プログラムでツリービューツリーノードをクリックする必要があります。以前はSelect()を呼び出すことができましたが、このバージョンの.NET(4)では、そのメソッドはなくなりました。
誰もが新しいアプローチが何であるか知っていますか?
ありがとう、マイク
TreeNodeのSelect()メソッドはどこで見たことがありますか?私は何かを逃したに違いない:-)
とにかく、ノードを選択したい場合は、これを行うことができます:
TreeNode node; node.TreeView.SelectedNode = node;