12345678910111213141516171819202122 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style x:Key="MenuItemStyle" TargetType="{x:Type MenuItem}">
- <Setter Property="Foreground" Value="{DynamicResource NormalTextForeground}"/>
- </Style>
- <Style x:Key="ContextMenuStyle" TargetType="{x:Type ContextMenu}">
- <Setter Property="Background" Value="{DynamicResource ContextMenuBackground}"/>
- <Setter Property="OverridesDefaultStyle" Value="True"/>
- <Setter Property="SnapsToDevicePixels" Value="True"/>
- </Style>
- <Style x:Key="IconlessContextMenuStyle" TargetType="{x:Type ContextMenu}" BasedOn="{StaticResource ContextMenuStyle}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ContextMenu}">
- <Border x:Name="Border" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="4" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}">
- <StackPanel ClipToBounds="True" Orientation="Vertical" IsItemsHost="True"/>
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </ResourceDictionary>
|