UIElement.AddHandler
Has this been removed from silverlight 3? http://msdn.microsoft.com/en-us/library/ms598899%28VS.95%29.aspx
I see documentation on how to use it, but when I开发者_运维技巧 try it says UIElement doesn't have an addhandler method
Hm, seems to work for me..
UIElement asdf = new Canvas();
asdf.AddHandler(ucConveyor.MouseLeftButtonDownEvent, TestFunction, false);
Can you paste your code?
精彩评论