I'm building a custom control in WPF. I want to catch a mouse down event when my control is in focus but the user clicks outside the control. Is there a way to do that and if so how?
My control inherits from ListBox.
|
I'm building a custom control in WPF. I want to catch a mouse down event when my control is in focus but the user clicks outside the control. Is there a way to do that and if so how? My control inherits from ListBox. |
|||||
|
|
You can use In your example I would capture the mouse when the control has focus, and release the mouse when the control looses focus. |
|||
|
|
|
Suppose you have a By registering to
You can use following code
To catch this event if |
|||
|
|