I ran into a problem when in Silverlight the MouseLeftButtonDown event does not fire for Button and hyperlinkButton. It seems like it is being processed somewhere in the framework. How can I override this behavior
In the XAML code below. When I click the Named Cancel button, Button_MouseLeftButtonDown does not start. I tried putting a text block inside the button, MouseLeftButtonDown works when I click on the text on the button, but it does not bubble up to the frame
<Button Name="Cancel" ClickMode="Release" MouseLeftButtonDown="Button_MouseLeftButtonDown">
<Button.Content>
<TextBlock Name="CancelInnerText" MouseLeftButtonDown="TextBlock_MouseLeftButtonDown">Clone Page</TextBlock>
</Button.Content>
source
share