vote up 0 vote down star

Is there any way to set an event handler without doing it manually in the classname.designer.cs file other than double clicking the UI element?

flag

3 Answers

vote up 2 vote down check

Click on the lightning bolt icon in the Properties window. Double-click the event you want to implement.

link|flag
vote up 1 vote down

Sure. Use myControl.Event += new EventHandler(SomeHandlerMethodInYourClass) somewhere during initialization, e.g. in the form's constructor.

link|flag
vote up 2 vote down

If I follow your question correctly, you can just do it in your code-behind like this:

myButton.Click += myHandler;

Or you could use an anonymous delegate:

myButton.Click += delegate
{
    MessageBox.Show("Clicked!");
};

HTH, Kent

link|flag

Your Answer

Get an OpenID
or

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