WPF MouseLeftButtonUp Not Firing

Looks like Button control is eating up that event Since Button.Click is actually a combination of LeftButtonDown event and LeftButtonUp event.

But you can subscribe to the tunneled event PreviewMouseLeftButtonUp on the Button instead of LeftButtonUp.

Leave a Comment