views:

27

answers:

1

I need to get mouse captured element to ReleaseMouseCapture for it. I have a problem with cancelling MouseLeftButtonUp event when element is already pressed. I need to cancel it before execution MouseLeftButtonUp.

+1  A: 

What you are looking for is a mechanism to intercept the event before it executes on the source element. This is not possible in Silverlight, the source element has first dibs on the event.

AnthonyWJones