I just recently started working with c# and was wondering if there is a simpler way to create event handlers for controls. For example if I have a button on a webform that i want a click handler for, I simply open the designer and double click it and it gets created and wired up for me. If I did not have have the option of using the designer, what other way would there be to create it other than by hand? For instance, in VB all the controls show up in the code window dropdown so you can select them, choose an event and it is stubbed out for you. Is there something similar in c# or am I stuck doing it the hard way?
|
|
|
|
|
|
|
Why is everyone suggesting a new EventHandler object??? Redundant
or with C# 3.0
|
||||||||||
|
|
|
You can use lambdas if you don't even want to create a function, if for instance the event handler is really simple. You can do the following:
That the easiest way I've found. |
||
|
|
|
|
You can do the work the designer does for you by yourself of course. Simply add:
and create a suited method to be called:
|
||
|
|
What is so hard about it? Just write
And now you should see a hint that by hitting [tab], you'll get an implementation of a method for this particular event. Nice and easy. No need at all to pollute the navigational dropdowns with stuff that isn't there. ;-) |
||||||
|
