Search code examples
wpfmouseleftbuttonup

Is there any way to find out mouse left button up event outside of an element in wpf?


I will define an event for my border element that relize mouse left button up outside of this element.


Solution

  • You can get mouse up event outside the element who received mouse down, if on the mouse down you call element.CaptureMouse() (and on mouse up, do not forget to call element.ReleaseMouseCapture()).