我有一View树和一环。 我想在我右上点击Rota node,而不是儿童节点时,就显示Lenu ONLY的情况。
这是我迄今为止所做的。 这表明,即使在我右上点击儿童节点时,也见到了门图。 我怎么能够改变这种说法,以便门乌只有在我正确点击根 no的时候才能显示吗? 是否可能?
if(e.Button == MouseButtons.Right)
{
// Select the clicked node
treeView1.SelectedNode = treeView1.GetNodeAt(e.X, e.Y);
if(treeView1.SelectedNode != null)
{
myContextMenuStrip.Show(treeView1, e.Location)
}
}