Hi
I have a String like this:
string myEventName = "myButton_Click";
Then I need to create an EventHandlers for the click of some button, but passing the String as a parameter, the "myButton_Click" method already exists:
private void myButton_Click (object sender, RoutedEventArgs e) { }
Is this possible, using reflection or other kind of trick?
Thanks.