What events are available?
In VS 2010 Express, after I add a control to a form, I can double-click it and it will take me to the event handler stub for the default action. But don't some controls have more than one event? What about the form itself, such as minimize, restore, close, move etc? How do I auto-generate those handlers and where is the menu of choices?
Re: What events are available?
When you select a control (or the entire form), you get it's properties listed in the Properties Window.
On it, there is a button, labeled with a yellow flash/thunderbolt, similar to this http://i.msdn.microsoft.com/dynimg/IC124810.gif - only prettier :D.
Click that, and it will list all the available events.
Re: What events are available?
Re: What events are available?
Ahh.. perfect! Thank you so much :)