I have a Windows Phone page (MainPage), and in the codebehind, I want to dynamically add an event handler - for example to the MouseEnter event. The trick is, I want this event handler to have the event argument as an object:
private void MyEventHandler(object sender, object args)
{
}
(The reason for this is that this is a simplified example)
This works:
this.MouseEnter += MyEventHandler;
But this throws an ArgumentException:
var handlerType = Type.GetType("System.EventHandler`1").
MakeGenericType(typeof(EventArgs));
this.GetType().GetEvent("Hold").AddEventHandler(
this, Delegate.CreateDelegate(handlerType, this, "MyEventHandler"));
And the message of the exception is: "Cannot bind to the target method because its signature or security transparency is not compatible with that of the delegate type." If I change the signature of the event handler, all works, but I want to keep it as "object" or "dynamic".
How can I add the event handler with the AddEventHandler call?
Any help is highly appreciated.