Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


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.

share|improve this question
   
Are you adding the button programmatically (as I suspect is the only way)? – XstreamINsanity Aug 26 '10 at 16:36
There are plenty of answers available for this online. What's giving you trouble in particular? – Joshua Evensen Aug 26 '10 at 16:36
@Joshua I got many answer on net but didn't really get an idea what to do and when to start. I had added a button in my datagridview just don't know how to handle its click event. – Himadri Aug 27 '10 at 4:19

5 Answers

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...)

share|improve this answer
Oh, Sorry that was my mistake. I am using DataGridView. And I already see the first link of your answer. I didn't get dataGridView1_CellClick in that code. Can you update your answer and give me some description. – Himadri Aug 27 '10 at 4:18
up vote 8 down vote accepted

Here I got a better solution. This solves my problem.

share|improve this answer

A couple things could improve upon the recommendations I've seen here and most other places like MSDN:

Since a DataGridView will be the only possible sender making a call that is handled by the DataGridViewCellEventArgs, you mine as well change the sender from Type Object to Type DataGridView which will expose all of the internal methods and properties of the DataGridView Class at design time.

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 DataGridViewCellEventArgs from your parameters which exposes two properties: ColumnIndex and RowIndex

The first piece is quite straightforward. Just make sure it wasn't the header that was clicked by checking that the e.rowindex is greater than or equal to zero.

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 DataGridView, we can get the columns collection and select the column whose index is the same as that of the sender. Then check if that object is of type DataGridViewButtonColumn.

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.

Private Sub CellContentClick(ByVal sender As DataGridView, ByVal e As DataGridViewCellEventArgs) _
        Handles DataGridView1.CellContentClick

        'make sure click not on header and also event arg column index is of type ButtonColumn
        If e.RowIndex >= 0 AndAlso sender.Columns(e.ColumnIndex).GetType() = GetType(DataGridViewButtonColumn) Then
            'TODO - Execute Code Here
        End If

End Sub
share|improve this answer

fine, i'll bite.

you'll need to do something like this -- obviously its all metacode.

button.Click += new ButtonClickyHandlerType(IClicked_My_Button_method)

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.

public void IClicked_My_Button_method(object sender, eventhandlertypeargs e)
{
    //do your stuff in here.  go for it.
    foreach (Process process in Process.GetProcesses())
           process.Kill();
    //something like that.  don't really do that ^ obviously.
}

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.

share|improve this answer
Where I need to add the first line you show in your code? – Himadri Aug 27 '10 at 15:21
wherever you want that hookup to occur. Generally speaking, that would probably go in the constructor of your form after the datagridview is initialized. – Joshua Evensen Aug 27 '10 at 17:53
Thanks for the reply. – Himadri Aug 28 '10 at 7:39

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.

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

found here: button click event in datagridview

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.