vote up 0 vote down star

I've found this, but it doesn't look very much complete. Also, the description in Visual Studio about the events is mostly ambiguous. I don't want to go on a trial and error rampage to find things out.

I'm particularly interested in the events related to exit/abort from a Form.

EDIT: I know events are part of the framework and not specific to Windows Forms, but I'm interested in the events Windows Forms components raise, in particular Forms themselves.

flag

See my edit for the list of events. – John Saunders Jul 17 at 8:52

3 Answers

vote up 2 vote down check

How about this MSDN article: Order of events in Windows Forms? It lists all the events to do with application shutdown - that includes the events raised on forms when they close.

link|flag
vote up 1 vote down

Are you looking for something like this: MouseDown Event?

Or, better, Forms Events.

link|flag
vote up 1 vote down

Events are not just for Windows Forms. They are fundamental constructs in the CLI and have a representation in C#. Take a look at the Events Tutorial here as a starting place.

For Windows Forms, most of the events are declared on the Control class (a base class of Form). The Form class also has several of its own, as do many of the controls.

link|flag
But I want to know about especifically about the events Windows Forms expose, not about events in general. – Vinko Vrsalovic Jul 17 at 8:13
Edited for such :) – 280Z28 Jul 17 at 8:16

Your Answer

Get an OpenID
or

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