mouseleftbuttonup

WPF MouseLeftButtonUp Not Firing

Strange happenings in WPF... When I set the event to MouseUp I can get it to fire when I right-click the button. But this won't fire with either click! <Button MouseLeftButtonUp="btnNewConfig_MouseUp" Name="btnNewConfig"> <StackPanel Orientation="Horizontal"> <Image Source="Ico...

Silverlight event MouseLeftButtonDown not fired

I ran into the problem where in Silverlight event MouseLeftButtonDown is not being fired for Button and hyperlinkButton. Looks like it is handled somewhere in the framework. How I can override this behavior In the XAML code below When I click on the button Named Cancel, Button_MouseLeftButtonDown is not fired. I tried putting textblock...