datagridview events order

J

JoZ CaVaLLo

Hi.

I need to know all events that can be generated in a datagridview. In
particularly I'd like to find a list describing the dependencies of
each event.

In Exemple: first there is a rowValidating, second a rowValidated and
finally a selectionChanged (naturally there are a lot of others events
inside).

Thank you very much.
 
N

Nicholas Paldino [.NET/C# MVP]

JoZ,

Have you looked at the documentation for the DataGridView class? All
the possible events that can be fired are listed there.

As for the order that they are fired in, the documentation should be
able to shed some light, but in general, anything ending with "ing"
indicates that the event is fired while it is happening, whereas anything
ending in "ed" means that the action happened already.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top