我有一个ContextMenuStrip
其中一个项目具有一个DropDownItems
属性,该属性是动态添加的ToolStripMenuItem
对象的集合。当我处理子项Click
事件时,发送者的类型是ToolStripMenuItem
,但它Owner
是ToolStripDropDownMenu
. 我找不到如何从中确定“主机”ContextMenuStrip。它没有Owner
自己的属性,并Parent
返回 null。
当我使用下面@Steve 发布的代码的这种改编时:
Dim dropDownItem = DirectCast(sender, ToolStripDropDownItem)
Dim menu As ContextMenuStrip = DirectCast((((dropDownItem.DropDown).OwnerItem).OwnerItem).Owner, ContextMenuStrip)
Dim grid = menu.SourceControl
然后menu.SourceControl
是Nothing
,但是当我处理顶层时,即非下拉菜单项的点击是这样的
Dim item As ToolStripMenuItem = DirectCast(sender, ToolStripMenuItem)
Dim strip As ContextMenuStrip = DirectCast(item.Owner, ContextMenuStrip)
Dim grid As DataGridView = DirectCast(strip.SourceControl, DataGridView)
然后我得到了我正在寻找的网格。