I am developing a windows application using C#. I am using Datagridview to display data. I have added a button column in that. I want to know how can I handle click event on that button in datagridview.
|
|
|||||||||
|
|
That's answered fully here for WinForms: http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewbuttoncolumn.aspx and here: http://msdn.microsoft.com/en-us/library/bb907626.aspx for Asp.Net depending on the control you're actually using. (Your question says DataGrid, but you're developing a Windows app, so the control you'd be using there is a DataGridView...) |
||||
|
|
A couple things could improve upon the recommendations I've seen here and most other places like MSDN: Since a After handling the Content Click and before Executing whatever you want the button to do, you're going to want to confirm that the button was the thing on the grid being pressed. To do this you can use the The first piece is quite straightforward. Just make sure it wasn't the header that was clicked by checking that the Next, in order to check the button column (as opposed to any other column) was clicked, I would avoid the suggestion on MSDN to hardcode the column index or name, making it difficult if your column order changes or column name changes or you autogenerate some columns. Instead, you can just check to make sure that the column raising the event is of type DataGridViewButtonColumn. Because we have updated
the sender to type If you have more than one button per grid, you may have to check the column name in your execution code, but this will simplify the validation that a button has been clicked.
|
||||
|
|
|
fine, i'll bite. you'll need to do something like this -- obviously its all metacode.
that "hooks" the IClicked_My_Button_method method up to the button's Click event. Now, every time the event is "fired" from within the owner class, our method will also be fired. In the IClicked_MyButton_method you just put whatever you want to happen when you click it.
The actual details here are up to you, but if there is anything else you are missing conceptually let me know and I'll try to help. |
|||||||
|
|
Here's the better answer: 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.
found here: button click event in datagridview |
|||
|
|