I am trying to show a popup menu on my treeview when users right click - allowing them to choose context sensitive actions to apply against the selected node.
At the
Drag a context menu strip onto the form then:
private void treeView1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Right) { // Display context menu for eg: ContextMenu1.Show(); } }