我有一个ContextMenuStrip
分配给几个不同的列表框。我试图弄清楚ContextMenuStrip
什么时候单击了什么ListBox
。我尝试从下面的代码开始,但无法正常工作。在sender
有正确的价值,但是当我尝试它分配到menuSubmitted
它为空。
private void MenuViewDetails_Click(object sender, EventArgs e)
{
ContextMenu menuSubmitted = sender as ContextMenu;
if (menuSubmitted != null)
{
Control sourceControl = menuSubmitted.SourceControl;
}
}
任何帮助都会很棒。谢谢。
使用以下帮助,我弄清楚了:
private void MenuViewDetails_Click(object sender, EventArgs e)
{
ToolStripMenuItem menuItem = sender as ToolStripMenuItem;
if (menuItem != null)
{
ContextMenuStrip calendarMenu = menuItem.Owner as ContextMenuStrip;
if (calendarMenu != null)
{
Control controlSelected = calendarMenu.SourceControl;
}
}
}
if
语句,if (menuItem == null) return;
如果您像我一样,并且不希望将处理该语句的代码嵌套不必要的2个层次,请不要使用它们。