Skip to main content
Home Forums Silverlight Programming Programming with .NET - General SL2RC - mouse wheel support ? - fix for B2 solution ?
2 replies. Latest Post by Montago on October 22, 2008.
(0)
Montago
Member
267 points
191 Posts
10-16-2008 5:29 AM |
In SL2 b2 we solved the mouse wheel issue by adding a Javascript event handler, and then send these events to the visible elements using UIElement.HitTest(x, y)
what is the solution for RC ??
the HitTest property is missing, and i havent seen any support for mouseWheel on scrollviewers
Jonathan...
All-Star
24929 points
2,425 Posts
10-22-2008 2:15 AM |
Hi Montago,
UIElement.HitTest method has moved to the VisualTreeHelper class and renamed to VisualTreeHelper.FindElementsInHostCoordinates.
For more break changes, please take a look at the BreakingChangesBetweenBeta2andRelease.doc.
http://silverlight.net/forums/t/38530.aspx
Best regards,
Jonathan
10-22-2008 2:45 AM |
hey, thanks. i discovered this solution by my self... but thanks for answering the thread !