Can I get a MouseLeave event while Mouse.Capture() is active?
问题 I have a button. On Button.MouseRightButtonDown, I'm calling Mouse.Capture(button), because I want to detect if someone releases right-click outside of the Button. I also have a Button.MouseLeave event registered. If someone right-click-drags the mouse off the button, I want this event to trigger. Unfortunately, it seems like Mouse.Capture somehow blocks MouseLeave from occuring. Does anyone know a workaround, or maybe can point out where I'm going wrong? (By the way, if anyone's curious what