DataGridView使用技巧九:DataGridView的右键菜单(ContextMenuStrip)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataGridView使用技巧九:DataGridView的右键菜单(ContextMenuStrip)相关的知识,希望对你有一定的参考价值。

DataGridView,DataGridViewColumn,DataGridViewRow,DataGridViewCell有ContextMenuStrip属性。可以通过设置ContextMenuStrip对象来控制DataGridView的右键菜单的显示。

DataGridViewColumn的ContextMenuStrip属性设定除了列头以外的单元格的右键菜单。

DataGridViewRow的ContextMenuStrip属性设定除了行头以外的单元格的右键菜单。

DataGridViewCell的ContextMenuStrip属性设定指定单元格的右键菜单。

对于单元格上的右键菜单的设定,优先顺序是:Cell>Row>Column>DataGridView

利用CellContextMenuStripNeeded、RowContextMenuStripNeeded事件可以设定单元格的右键菜单,尤其是需要右键菜单根据单元格值的变化而变化的时候。比起使用循环遍历,使用该事件来设定右键菜单的效率更高。

说明:CellContextMenuStripNeeded事件处理方法的参数中,e.RowIndex=-1表示列头,e.ColumnIndex=-1表示行头。RowContextMenuStripNeeded则不存在e.ColumnIndex=-1的情况。

示例一:

 1 //设置DataGridView的右键菜单
 2 this.dgv_Users.ContextMenuStrip = cmsDgv;
 3 //设置列的右键菜单
 4 this.dgv_Users.Columns[1].ContextMenuStrip = cmsColumn;
 5 //设置列头的右键菜单
 6 this.dgv_Users.Columns[1].HeaderCell.ContextMenuStrip = cmsHeaderCell;
 7 //设置行的右键菜单
 8 this.dgv_Users.Rows[2].ContextMenuStrip = cmsRow;
 9 //设置单元格的右键菜单
10 this.dgv_Users[1, 2].ContextMenuStrip = cmsCell;

示例二:

private void dgv_Users_CellContextMenuStripNeeded(object sender, DataGridViewCellContextMenuStripNeededEventArgs e)
{
    DataGridView dgv = sender as DataGridView;
    if (e.RowIndex < 0)
    {
         //设置列头右键
         e.ContextMenuStrip = cmsHeaderCell;
    }
    else if (e.ColumnIndex < 0)
    { 
          //设置行头右键菜单
          e.ContextMenuStrip = cmsRow;
     }
     else if (dgv[e.ColumnIndex, e.RowIndex].Value.ToString().Equals(""))
     {
           e.ContextMenuStrip = cmsCell;
     }
     else
     {
           e.ContextMenuStrip = cmsDgv;
     }
}

 

以上是关于DataGridView使用技巧九:DataGridView的右键菜单(ContextMenuStrip)的主要内容,如果未能解决你的问题,请参考以下文章

怎么让datagridview不自动修改绑定的datatable

DataGridView 与组合框列显示 System.Data.DataRowView 而不是 DisplayMember

如何允许用户在 c# 中的 datagridview 组合框中手动输入

在 DataGridView 中,根据输入的值更改选定的单元格

C# Windows 窗体(非 SQL):在新窗体上用整数 +1 填充 DataGridView 行中当前最高数字的文本框

C#中如何对datagridview 表格中的数据进行筛选,查找包含某个字段的行数据,求范例代码 感谢啊。