C#中dataGridView单击事件怎么写?

2024-12-19 05:02:25
推荐回答(3个)
回答1:

this.dgvPcase.CellClick+=System.Windows.Forms.DataGridViewCellEventHandler(this.dgvPcase_CelClick)

回答2:

CellClick(object sender, DataGridViewCellEventArgs e)
你dgvPcase_CellClick的事件错了

回答3:

MouseDown 这个事件
在里面写下面的代码
if(e.butten==Mouse.Right)
{
// 你想干什么?全加在这里
}