Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

button click event in datagridview

I am having a button cell in datagridview.When that button is clicked,another datagridview should be visible .For every button click in the button column,the data in new datagridview should be differed.I dont know how to implement the button click event which differs for every row.Please help me with the sample code.

like image 310
sai sushma Avatar asked Sep 02 '11 16:09

sai sushma


1 Answers

You can't implement a button clicked event for button cells in a DataGridViewButtonColumn. Instead, you use the DataGridView's CellClicked event and determine if the event fired for a cell in your DataGridViewButtonColumn. Use the event's DataGridViewCellEventArgs.RowIndex property to find out which row was clicked.

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);
    }
}

The MSDN documentation on the DataGridViewButtonColumn class has a more complete example.

like image 161
Jay Riggs Avatar answered Sep 22 '22 10:09

Jay Riggs