c# 如何给动态生成的datagridview添加行的双击事件

2024年11月28日 10:45
有2个网友回答
网友(1):

你的 dgv_CellDoubleClick 函数这样:

void dgv_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
    DataGridView tempGdv =sender as DataGridView;//获取事件发送者
    if(e.RowIndex>-1&&e.ColumnIndex>-1)//防止 Index 出错
    {
        String tempStr=tempGdv.Rows[e.RowIndex].Cells[0].Value.ToString(); 
    }  
}

网友(2):

动态生成的同时加不就完了