views:

19

answers:

1

I have a canvas with a mouse up and down event and there are normaly around 10-15 clickable objects on the screen. If I click down on an element or blank space I can catch the event, but when I release the mouse it its only caught if the mouse wasn't on another element (blank space is fine).

Is there any way in Silverlight (for WP7) to make sure I get a mouse up event no matter where on the screen it its triggered?

A: 

You should simply Capture the mouse when you get the mousDown event.

(And release it after your mouseUp )

Maupertuis
Will that also work for touch screens? Or is it a completely different problem?
Psykocyber
Also, why didn't I figure this out myself^^
Psykocyber