Event Handler Wizard

  • Thread starter Thread starter Allan
  • Start date Start date
A

Allan

Is there a wizard in C# that add event handler? Like the C++ Class Wizard.
e.g. A wizard that List/Add events of ListView.
Thanks.


Wizard
 
There is no class wizard like the one in C++ in C#, but the events are apart
of the properties dialog.

In VS.Net, from the design view, click on a control, then click on the
lightning symbol at the top of the properties to give you a list of
available events for that control. Double clicking in one will generate the
event handler for you and take you there.

hope that helps.
 
Yes. Thank you !



Dan Bass said:
There is no class wizard like the one in C++ in C#, but the events are
apart of the properties dialog.

In VS.Net, from the design view, click on a control, then click on the
lightning symbol at the top of the properties to give you a list of
available events for that control. Double clicking in one will generate
the event handler for you and take you there.

hope that helps.
 
Back
Top