Skip to content

Instantly share code, notes, and snippets.

@fiveisprime
Created June 17, 2012 01:37
Show Gist options
  • Save fiveisprime/2943098 to your computer and use it in GitHub Desktop.
Save fiveisprime/2943098 to your computer and use it in GitHub Desktop.
Routed Events With Visual States in Silverlight 4
<button Style="{StaticResource ButtonStyle}"
Height="126"
Width="137"
Name="button"/>
public MainPage()
{
InitializeComponent();
button.AddHandler(
UIElement.MouseLeftButtonDownEvent,
new MouseButtonEventHandler(this.MouseLeftButtonDown),
true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment