Dynamic Context Menu on Treeview Nodes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T00:07:40Z http://stackoverflow.com/feeds/question/365892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/365892/dynamic-context-menu-on-treeview-nodes 2 Dynamic Context Menu on Treeview Nodes dr. evil 2008-12-13T22:54:56Z 2009-08-12T09:20:24Z <p>Duplicate Of : <a href="http://stackoverflow.com/questions/2527/c-treeview-context-menus">http://stackoverflow.com/questions/2527/c-treeview-context-menus</a></p> <p>I've got a context menu on a Treeview, when the user right clicks it supposed to change based on the currently right clicked node's tag object.</p> <p>Currently I'm updating the context menu in after_select event, however this doesn't work when user right clicks to another node without selecting it.</p> <p>How can I detect which node right clicked and change the context menu? Or am I doing it wrong?</p> http://stackoverflow.com/questions/365892/dynamic-context-menu-on-treeview-nodes/365901#365901 2 Answer by Guge for Dynamic Context Menu on Treeview Nodes Guge 2008-12-13T23:02:52Z 2008-12-13T23:02:52Z <p>You can use the MouseDown event and the HitTest method to find out which node was clicked.</p> http://stackoverflow.com/questions/365892/dynamic-context-menu-on-treeview-nodes/387153#387153 1 Answer by Stu for Dynamic Context Menu on Treeview Nodes Stu 2008-12-22T19:52:13Z 2008-12-22T19:52:13Z <pre><code>Private Sub tvTables_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles tvTables.MouseDown If e.Button = Windows.Forms.MouseButtons.Right Then Dim M As New ContextMenuStrip Dim HTI As TreeViewHitTestInfo = tvTables.HitTest(e.X, e.Y) If HTI.Node.Level = 0 Then M = T1Menu ElseIf HTI.Node.Level = 1 Then M = T2Menu ElseIf HTI.Node.Level = 2 Then M = T3Menu End If tvTables.ContextMenuStrip = M tvTables.ContextMenuStrip.Show() End If End Sub </code></pre>