DataGridView

  • Thread starter Thread starter Wndr
  • Start date Start date
W

Wndr

Hi I am new to C#.
Now I am working with DataGridView. How coudl I find all event that this
GridView supports.
So far I found only DataGridView_CellContentClick(). I am looking to event
similar to in VB6
DataGridView_AfterUpdate().
Any help appreciated.
 
Wndr said:
Hi I am new to C#.
Now I am working with DataGridView. How coudl I find all event that this
GridView supports.
So far I found only DataGridView_CellContentClick(). I am looking to event
similar to in VB6
DataGridView_AfterUpdate().
Any help appreciated.
If you are using the designer just click on the datagridview and go to
the property window, if you cant see it go to view->properties window
in there at the top there is a lightning bold. click that and you can
see all the event this supports.

You can also also go dataGridveiw. and the intelisense will show you
everything it can do (hit ctrl+j if it doesn't come up) and browse
through it the first way should be the easiest
 
Hi I am new to C#.
Now I am working with DataGridView. How coudl I find all event that this
GridView supports.
So far I found only DataGridView_CellContentClick(). I am looking to event
similar to in VB6
DataGridView_AfterUpdate().
Any help appreciated.

Check the docs. You will have a list of public events,
Heck, here is the list :0
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview_events.aspx
Also check this
http://msdn.microsoft.com/en-us/library/e0ywh3cz.aspx
 
Back
Top