Skip to content

Instantly share code, notes, and snippets.

@jammerxd
Created December 1, 2015 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jammerxd/e20a335ae16e85db1a76 to your computer and use it in GitHub Desktop.
Save jammerxd/e20a335ae16e85db1a76 to your computer and use it in GitHub Desktop.
<Style x:Key="AppThemeMenuItemStyle"
TargetType="{x:Type MenuItem}"
BasedOn="{StaticResource MetroMenuItem}">
<Setter Property="Icon"
Value="{StaticResource AppThemeMenuIcon}" />
<Setter Property="Header"
Value="{Binding displayName, Mode=OneWay}" />
<Setter Property="CommandParameter" Value="{Binding Name}"/>
<Setter Property="Command" Value="{Binding ChangeThemeCommand}"/>
</Style>
<Style x:Key="AccentColorMenuItemStyle"
TargetType="{x:Type MenuItem}"
BasedOn="{StaticResource MetroMenuItem}">
<Setter Property="Icon"
Value="{StaticResource AccentMenuIcon}" />
<Setter Property="Header"
Value="{Binding displayName, Mode=OneWay}" />
<Setter Property="CommandParameter" Value="{Binding Name}"/>
<Setter Property="Command" Value="{Binding ChangeAccentCommand}"/>
</Style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment