你好,对不起我的英语。
dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
这个函数有参数 DataGridViewCellEventArgs e,在它的帮助下我可以找到点击的单元格:
dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString()
但我正在为 Word 导出编写函数:
private void WordExport_Click(object sender, EventArgs e)
当我点击按钮时哪个工作。在这个函数中,我需要知道当前单元格,与 dataGridView1_CellClick 函数相同 - dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString()
我怎么才能得到它?