Hi!
I need to assign an eventHandler to an object, in this way:
_Element.AddHandler(UIElement.MouseLeftButtonUpEvent, new RoutedEventHandler(Vars.Digit), true);
but, in fact, I only have a string that contains "Digit" or other method name in the Vars object instance.
It is possible to achieve this using reflection or other kind of trick?
Thanks.