Click here to Skip to main content
15,881,027 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Diffrences between Eventhandler and Routed event handler in Silverlight
Posted

You can always have a look at the msdn website.
 
Share this answer
 
Here is a simple and correct answer:

The second parameter of EventHandler is an instance of EventArgs while the second parameter of RoutedEventHandler is RoutedEventArgs...

It looks like this:
C#
public delegate void EventHandler(object sender, EventArgs e);
public delegate void RoutedEventHandler(object sender, RoutedEventArgs e);




Ok, I know the answer I gave you is pretty useless, so I'll give you another one:

I assume you want to know what's the difference between Events and Routed Events. These 2 articles might help you:

http://msdn.microsoft.com/en-us/library/ms742806.aspx (a MSDN article)

http://joshsmithonwpf.wordpress.com/2008/03/18/understanding-routed-commands/ (a great article about Routed Commands that also contains a very nice explanation of Routed Events)
 
Share this answer
 
Comments
Nish Nishant 29-Jul-10 14:36pm    
Reason for my vote of 5
Propose this as answer.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900