DataGridView 单元格、RowHeader 和 ColumnHeader 的不同 ContextMenuStrip
我想为 DataGridView
Cells
、RowHeaders
和 ColumnHeaders
设置不同的 ContextMenuStrip
。
这个想法是,当我右键单击这些项目中的任何一个时,都会显示不同的 ContextMenuStrip 。我该怎么做?
I want to set different ContextMenuStrip
for DataGridView
Cells
, RowHeaders
and ColumnHeaders
.
The idea is that when I right-click any of these items, a different ContextMenuStrip
is displayed. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 DataGridView 的
MouseDown
事件来测试是否单击了鼠标右键,如果是,则使用关联的HitTestInfo
属性来确定是否单击了单元格、行或列。使用此信息来显示您需要的 ContextMenuStrip。下面是执行此操作的
MouseDown
事件示例。要尝试该示例,请在表单上放置一个 DataGridView 和三个 ContentMenuStrip。将 ContentMenuStrip 命名为 mnuCell、mnuRow 和 mnuColumn。在这里,我将 DataGridView 的 ContextMenuStrip 属性分配给适合右键单击的项目(单元格、行或列)的 ContextMenuStrip。为了演示如何进一步自定义 ContextMenuStrips 的行为,我还在每个 ContentMenuStrips 的菜单项中设置文本。
Use the DataGridView's
MouseDown
event to test if the right mouse has been clicked and if so use the associatedHitTestInfo
property to determine if a cell, row or column has been clicked. Use this information to display the ContextMenuStrip you need.Here's an example
MouseDown
event that does this. To try the sample drop a DataGridView and three ContentMenuStrips on a form. Name the ContentMenuStrips mnuCell, mnuRow and mnuColumn.Here I'm assigning the DataGridView's ContextMenuStrip property to the ContextMenuStrip appropriate for the item right clicked (cell, row or column). To demonstrate how you might further customize the behavior of the ContextMenuStrips I'm also setting the text in each ContentMenuStrips' menu item.
在 DataGridView 的 MouseDown 事件上,使用 DataGridView.HitTest 方法检查单击的内容。然后您可以根据单击的内容切换上下文菜单。
On MouseDown event of DataGridView, use DataGridView.HitTest method to check what was clicked. Then you can switch context menus depending on what was clicked.