c# – 在winform应用程序的数据网格视图中添加上下文菜单

前端之家收集整理的这篇文章主要介绍了c# – 在winform应用程序的数据网格视图中添加上下文菜单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
右键单击DataGridView中的菜单项时如何显示上下文菜单
我想在菜单添加删除,以便删除整行.
提前致谢

解决方法

参考米格尔的答案
我认为这样很容易实现
int currentRowIndex;
    private void dataGridView1_CellMouseUp(object sender,DataGridViewCellMouseEventArgs e)
    {
        currentRowIndex = e.RowIndex;
    }  
    private void deleteToolStripMenuItem_Click(object sender,EventArgs e)
    {    
        dataGridView1.Rows.Remove(dataGridView1.Rows[currentRowIndex]);
    }
原文链接:https://www.f2er.com/csharp/92405.html

猜你在找的C#相关文章