3 回答

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊
對(duì)于WinForms,這里已完全回答:DataGridViewButtonColumn類
而在這里:如何:響應(yīng)GridView控件中的按鈕事件
取決于您實(shí)際使用的控件。(您的問(wèn)題是說(shuō)DataGrid,但是您正在開(kāi)發(fā)Windows應(yīng)用程序,因此要使用的控件中有一個(gè)DataGridView ...)

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個(gè)贊
這是更好的答案:
您不能為DataGridViewButtonColumn中的按鈕單元實(shí)現(xiàn)按鈕單擊事件。相反,您可以使用DataGridView的CellClicked事件并確定是否為DataGridViewButtonColumn中的某個(gè)單元觸發(fā)了該事件。使用事件的DataGridViewCellEventArgs.RowIndex屬性可以找到單擊的行。
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) {
// Ignore clicks that are not in our
if (e.ColumnIndex == dataGridView1.Columns["MyButtonColumn"].Index && e.RowIndex >= 0) {
Console.WriteLine("Button on row {0} clicked", e.RowIndex);
}
}
- 3 回答
- 0 關(guān)注
- 1663 瀏覽
添加回答
舉報(bào)