vote up 3 vote down star
2

Since google has failed me for the past 5-10 minutes I have a quick question. I wish to pass a param value into a function that I call from a button.click Event Handler. The event is currently added using

MyButton.Click = new System.EventHandler(MyButton_click);

But I want the function to recieve:

private void MyButton_click(int ID)
{
...
}

How can I change my EventHandler declaration so that this can be accomplished?

flag

2 Answers

vote up 8 vote down check

Button.Click is defined as it is, and there is no way to change it. However,

myButton.Click += delegate { MyButton_click(1); }

will do the job.

link|flag
Worked like a charm. Thanks. – corymathews Apr 15 at 6:57
vote up 1 vote down

you can use CommandArgument property and then cast a sender in your event handler to a Button type to get the CommandArgument value

link|flag

Your Answer

Get an OpenID
or

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