| 12345678910111213141516171819202122232425262728 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:data1="clr-namespace:Muchinfo.MTPClient.Data;assembly=Client.Data">
- <HierarchicalDataTemplate x:Key="MenuDataTemplate"
- DataType="{x:Type data1:SysMenuItem}"
- ItemsSource="{Binding Children}">
- <TextBlock MinWidth="30"
- Foreground="{DynamicResource MainForegroundBrush}"
- Padding="3"
- Text="{Binding Title}" />
- </HierarchicalDataTemplate>
- <Style x:Key="MenuCommonItemStyle" TargetType="{x:Type MenuItem}">
- <Setter Property="Command" Value="{Binding Command}" />
- <Setter Property="CommandParameter" Value="{Binding}" />
- <Setter Property="IsCheckable" Value="{Binding IsCheckable}" />
- <Setter Property="IsChecked" Value="{Binding IsChecked, Mode=TwoWay}" />
- <Setter Property="IsEnabled" Value="{Binding IsEnabled}" />
- <Setter Property="Background" Value="{DynamicResource WindowHeadBrush}" />
- <Setter Property="HorizontalContentAlignment" Value="Left" />
- <Setter Property="VerticalContentAlignment" Value="Center" />
- <Setter Property="Padding" Value="2" />
- <Setter Property="BorderBrush" Value="{DynamicResource CommonBorderBrush}" />
- <Setter Property="BorderThickness" Value="0,0,0,1" />
- <Setter Property="Foreground" Value="{DynamicResource MainForegroundBrush}" />
- <Setter Property="Template" Value="{DynamicResource CommonMenuItemTemplate}" />
- </Style>
- </ResourceDictionary>
|