Skip to content

Instantly share code, notes, and snippets.

Created September 1, 2014 10:11
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 anonymous/1f6ba1105bfd60ff4eb8 to your computer and use it in GitHub Desktop.
Save anonymous/1f6ba1105bfd60ff4eb8 to your computer and use it in GitHub Desktop.
<MenuItem Header="Select System" ItemsSource="{Binding Systems, Mode=TwoWay}">
<MenuItem.Resources>
<local:MainViewModel x:Key="dc"/>
</MenuItem.Resources>
<MenuItem.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Command" Value="{Binding Source={StaticResource dc}, Path=AddItemCommand}"/>
</Style>
</MenuItem.ItemContainerStyle>
</MenuItem>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment