C# DataGridView內(nèi)自定義右鍵菜單
1. 在工具欄內(nèi)找到ContextMenuStrip,拖拽到目標(biāo)頁(yè)面內(nèi)

2. 在頁(yè)面內(nèi)添加ContextMenuStrip包含的項(xiàng)目

3. 添加DataGridView的事件
我自己的需求是,右鍵單擊表格內(nèi)特定區(qū)域的單元格,在相應(yīng)的位置彈出右鍵菜單列表。但是,DataGridView默認(rèn)只支持鼠標(biāo)左鍵單鍵選擇行或選擇單元格,所以需要在DataGridView的事件函數(shù)里自定義鼠標(biāo)的行為。其次,最好不要在DataGridView的屬性里面直接綁定ContextMenuStrip,如下圖

因?yàn)橐坏┰谶@里綁定,那么任何情況下只要鼠標(biāo)在DataGridView區(qū)域內(nèi)右鍵單擊,都會(huì)彈出菜單!(如果期望的效果本來(lái)就是這樣的話,忽略上述內(nèi)容)
為了實(shí)現(xiàn)在指定單元格右鍵時(shí)彈出菜單,需要自己定義事件函數(shù),直接貼代碼。

private void dgv_logs_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
? ? ? ? {
? ? ? ? ? ? if (e.Button == MouseButtons.Right && e.RowIndex >= 0)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? dgv_logs.ClearSelection();
? ? ? ? ? ? ? ? dgv_logs.CurrentCell = null;
? ? ? ? ? ? ? ? dgv_logs.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected = true;
? ? ? ? ? ? ? ? if (e.ColumnIndex > 4)
? ? ? ? ? ? ? ? ? ? dgv_logs.ContextMenuStrip = contextMenuStrip_logs;
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? ? ? dgv_logs.ContextMenuStrip = null;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? private void dgv_logs_CellMouseUp(object sender, DataGridViewCellMouseEventArgs e)
? ? ? ? {
? ? ? ? ? ? if (e.Button == MouseButtons.Right && e.RowIndex >= 0 && e.ColumnIndex > 4)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? contextMenuStrip_logs.Show(MousePosition.X, MousePosition.Y);
? ? ? ? ? ? ? ? dgv_logs.ContextMenuStrip = null;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? private void ToolStripMenuItem_logs_openInExplore_Click(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? int RowIndex = dgv_logs.CurrentCell.RowIndex;
? ? ? ? ? ? int ColIndex = dgv_logs.CurrentCell.ColumnIndex;
? ? ? ? ? ? MessageBox.Show(RowIndex.ToString() + ColIndex.ToString());
? ? ? ? }
4. 實(shí)現(xiàn)效果

