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.
問題は、NodeMouseHover イベントが発生するのは、マウスがノードのテキスト領域の上に置かれたときだけですが、次のように行全体が選択されたツリービューがあります。
どのイベントを使用する必要がありますか、または NodeMouseHover をどのように変更する必要があるので、マウス ポインターがテキスト領域だけでなくノード全体にホバーしたときにイベントが発生しますか?
MouseHover-Event を試して、選択した項目を取得してください:
private void treeView1_MouseHover(object sender, EventArgs e) { TreeNode selNode = (TreeNode)treeView1.GetNodeAt(treeView1.PointToClient(Cursor.Position)); if (selNode != null) { // Do something... } }