Skip to content

Instantly share code, notes, and snippets.

@eternaltung
Created April 11, 2013 16:43
Show Gist options
  • Save eternaltung/5365023 to your computer and use it in GitHub Desktop.
Save eternaltung/5365023 to your computer and use it in GitHub Desktop.
<Grid x:Name="LayoutRoot" Background="White">
<i:Interaction.Triggers>
<ei:KeyTrigger Key="A" Modifiers="Control+Alt" >
<ei:ChangePropertyAction PropertyName="Background" TargetName="LayoutRoot">
<ei:ChangePropertyAction.Value>
<SolidColorBrush Color="Red"/>
</ei:ChangePropertyAction.Value>
</ei:ChangePropertyAction>
</ei:KeyTrigger>
</i:Interaction.Triggers>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment