MenuItem.xaml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d">
  7. <Geometry x:Key="UpArrow">M 0,4 L 3.5,0 L 7,4 Z</Geometry>
  8. <MenuScrollingVisibilityConverter x:Key="MenuScrollingVisibilityConverter"/>
  9. <Geometry x:Key="DownArrow">M 0,0 L 3.5,4 L 7,0 Z</Geometry>
  10. <Style x:Key="MenuScrollButton" BasedOn="{x:Null}" TargetType="{x:Type RepeatButton}">
  11. <Setter Property="ClickMode" Value="Hover"/>
  12. <Setter Property="MinWidth" Value="0"/>
  13. <Setter Property="MinHeight" Value="0"/>
  14. <Setter Property="Template">
  15. <Setter.Value>
  16. <ControlTemplate TargetType="{x:Type RepeatButton}">
  17. <DockPanel SnapsToDevicePixels="true" Background="Transparent">
  18. <Rectangle x:Name="R1" Fill="Transparent" Width="1" DockPanel.Dock="Right"/>
  19. <Rectangle x:Name="B1" Fill="Transparent" Height="1" DockPanel.Dock="Bottom"/>
  20. <Rectangle x:Name="L1" Fill="Transparent" Width="1" DockPanel.Dock="Left"/>
  21. <Rectangle x:Name="T1" Fill="Transparent" Height="1" DockPanel.Dock="Top"/>
  22. <ContentPresenter x:Name="ContentContainer" HorizontalAlignment="Center" Margin="2,2,2,2" VerticalAlignment="Center"/>
  23. </DockPanel>
  24. <ControlTemplate.Triggers>
  25. <Trigger Property="IsPressed" Value="true">
  26. <Setter Property="Fill" TargetName="R1" Value="{DynamicResource {x:Static SystemColors.ControlLightLightBrushKey}}"/>
  27. <Setter Property="Fill" TargetName="B1" Value="{DynamicResource {x:Static SystemColors.ControlLightLightBrushKey}}"/>
  28. <Setter Property="Fill" TargetName="L1" Value="{DynamicResource {x:Static SystemColors.ControlDarkDarkBrushKey}}"/>
  29. <Setter Property="Fill" TargetName="T1" Value="{DynamicResource {x:Static SystemColors.ControlDarkDarkBrushKey}}"/>
  30. <Setter Property="Margin" TargetName="ContentContainer" Value="3,3,1,1"/>
  31. </Trigger>
  32. </ControlTemplate.Triggers>
  33. </ControlTemplate>
  34. </Setter.Value>
  35. </Setter>
  36. </Style>
  37. <Style x:Key="{ComponentResourceKey ResourceId=MenuScrollViewer, TypeInTargetAssembly={x:Type FrameworkElement}}" BasedOn="{x:Null}" TargetType="{x:Type ScrollViewer}">
  38. <Setter Property="HorizontalScrollBarVisibility" Value="Hidden"/>
  39. <Setter Property="VerticalScrollBarVisibility" Value="Auto"/>
  40. <Setter Property="Template">
  41. <Setter.Value>
  42. <ControlTemplate TargetType="{x:Type ScrollViewer}">
  43. <Grid SnapsToDevicePixels="true">
  44. <Grid.ColumnDefinitions>
  45. <ColumnDefinition Width="*"/>
  46. </Grid.ColumnDefinitions>
  47. <Grid.RowDefinitions>
  48. <RowDefinition Height="Auto"/>
  49. <RowDefinition Height="*"/>
  50. <RowDefinition Height="Auto"/>
  51. </Grid.RowDefinitions>
  52. <Border Grid.Column="0" Grid.Row="1">
  53. <ScrollContentPresenter Margin="{TemplateBinding Padding}"/>
  54. </Border>
  55. <RepeatButton Style="{StaticResource MenuScrollButton}" Focusable="false" Command="{x:Static ScrollBar.LineUpCommand}" CommandTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}" Grid.Column="0" Grid.Row="0">
  56. <RepeatButton.Visibility>
  57. <MultiBinding FallbackValue="Visibility.Collapsed" Converter="{StaticResource MenuScrollingVisibilityConverter}" ConverterParameter="0">
  58. <Binding Path="ComputedVerticalScrollBarVisibility" RelativeSource="{RelativeSource TemplatedParent}"/>
  59. <Binding Path="VerticalOffset" RelativeSource="{RelativeSource TemplatedParent}"/>
  60. <Binding Path="ExtentHeight" RelativeSource="{RelativeSource TemplatedParent}"/>
  61. <Binding Path="ViewportHeight" RelativeSource="{RelativeSource TemplatedParent}"/>
  62. </MultiBinding>
  63. </RepeatButton.Visibility>
  64. <Path Fill="{DynamicResource {x:Static SystemColors.MenuTextBrushKey}}" Data="{StaticResource UpArrow}"/>
  65. </RepeatButton>
  66. <RepeatButton Style="{StaticResource MenuScrollButton}" Focusable="false" Command="{x:Static ScrollBar.LineDownCommand}" CommandTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}" Grid.Column="0" Grid.Row="2">
  67. <RepeatButton.Visibility>
  68. <MultiBinding FallbackValue="Visibility.Collapsed" Converter="{StaticResource MenuScrollingVisibilityConverter}" ConverterParameter="100">
  69. <Binding Path="ComputedVerticalScrollBarVisibility" RelativeSource="{RelativeSource TemplatedParent}"/>
  70. <Binding Path="VerticalOffset" RelativeSource="{RelativeSource TemplatedParent}"/>
  71. <Binding Path="ExtentHeight" RelativeSource="{RelativeSource TemplatedParent}"/>
  72. <Binding Path="ViewportHeight" RelativeSource="{RelativeSource TemplatedParent}"/>
  73. </MultiBinding>
  74. </RepeatButton.Visibility>
  75. <Path Fill="{DynamicResource {x:Static SystemColors.MenuTextBrushKey}}" Data="{StaticResource DownArrow}"/>
  76. </RepeatButton>
  77. </Grid>
  78. </ControlTemplate>
  79. </Setter.Value>
  80. </Setter>
  81. </Style>
  82. <ControlTemplate x:Key="{ComponentResourceKey ResourceId=SubmenuContent, TypeInTargetAssembly={x:Type FrameworkElement}}" TargetType="{x:Type ContentControl}">
  83. <Border SnapsToDevicePixels="True" Background="{DynamicResource Color_BG_SubMenuBG}" MinWidth="{TemplateBinding ActualWidth}" BorderThickness="1" BorderBrush="{DynamicResource Color_BD_SubMenu}" Padding="5,0">
  84. <ContentPresenter Margin="0,5" HorizontalAlignment="Left"/>
  85. </Border>
  86. </ControlTemplate>
  87. <ControlTemplate x:Key="{ComponentResourceKey ResourceId=TopLevelHeaderTemplateKey, TypeInTargetAssembly={x:Type MenuItem}}" TargetType="{x:Type MenuItem}">
  88. <ControlTemplate.Resources>
  89. <Storyboard x:Key="OnMouseOver">
  90. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="Highlight">
  91. <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
  92. <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="1" KeySpline="0,0,1,0"/>
  93. </DoubleAnimationUsingKeyFrames>
  94. </Storyboard>
  95. <Storyboard x:Key="OnMouseOut">
  96. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="Highlight">
  97. <EasingDoubleKeyFrame KeyTime="0" Value="1"/>
  98. <SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="0" KeySpline="0,0,0,1"/>
  99. </DoubleAnimationUsingKeyFrames>
  100. </Storyboard>
  101. </ControlTemplate.Resources>
  102. <Grid SnapsToDevicePixels="true">
  103. <Border x:Name="BG" BorderBrush="{DynamicResource Color_BD_Menu}" BorderThickness="1" Cursor="Hand" Background="{DynamicResource Color_BG_Menu}">
  104. <Border.Effect>
  105. <DropShadowEffect Color="#FFC6E9FF" ShadowDepth="0" BlurRadius="10"/>
  106. </Border.Effect>
  107. <Grid>
  108. <Border x:Name="Highlight" Background="{DynamicResource Color_BG_Menu_Highlight}" Opacity="0">
  109. <Border.Effect>
  110. <BlurEffect/>
  111. </Border.Effect>
  112. </Border>
  113. </Grid>
  114. </Border>
  115. <ContentPresenter x:Name="contentPresenter" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" ContentSource="Header" RecognizesAccessKey="True" HorizontalAlignment="Center" VerticalAlignment="Center" Cursor="Hand">
  116. </ContentPresenter>
  117. <Popup x:Name="PART_Popup" AllowsTransparency="true" HorizontalOffset="1" IsOpen="{Binding IsSubmenuOpen, RelativeSource={RelativeSource TemplatedParent}}" Placement="Bottom" PopupAnimation="{DynamicResource {x:Static SystemParameters.MenuPopupAnimationKey}}" VerticalOffset="2" Focusable="false" MinWidth="150" Grid.Column="1">
  118. <ContentControl x:Name="SubMenuBorder" IsTabStop="false" Template="{DynamicResource {ComponentResourceKey ResourceId=SubmenuContent, TypeInTargetAssembly={x:Type FrameworkElement}}}">
  119. <ScrollViewer Style="{DynamicResource {ComponentResourceKey ResourceId=MenuScrollViewer, TypeInTargetAssembly={x:Type FrameworkElement}}}" CanContentScroll="true">
  120. <ItemsPresenter Margin="2" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Grid.IsSharedSizeScope="true" KeyboardNavigation.DirectionalNavigation="Cycle" KeyboardNavigation.TabNavigation="Cycle" Cursor="Hand"/>
  121. </ScrollViewer>
  122. </ContentControl>
  123. </Popup>
  124. </Grid>
  125. <ControlTemplate.Triggers>
  126. <Trigger Property="IsSuspendingPopupAnimation" Value="true">
  127. <Setter Property="PopupAnimation" TargetName="PART_Popup" Value="None"/>
  128. </Trigger>
  129. <Trigger Property="Icon" Value="{x:Null}"/>
  130. <Trigger Property="IsChecked" Value="true"/>
  131. <Trigger Property="HasDropShadow" SourceName="PART_Popup" Value="true"/>
  132. <Trigger Property="IsHighlighted" Value="true">
  133. <Trigger.ExitActions>
  134. <BeginStoryboard x:Name="OnMouseOut_BeginStoryboard1" Storyboard="{StaticResource OnMouseOut}"/>
  135. </Trigger.ExitActions>
  136. <Trigger.EnterActions>
  137. <BeginStoryboard x:Name="OnMouseOver_BeginStoryboard" Storyboard="{StaticResource OnMouseOver}"/>
  138. </Trigger.EnterActions>
  139. </Trigger>
  140. <DataTrigger Binding="{Binding Selected}" Value="True">
  141. <Setter Property="Opacity" TargetName="Highlight" Value="1"/>
  142. </DataTrigger>
  143. <Trigger Property="IsKeyboardFocused" Value="true"/>
  144. <Trigger Property="IsSubmenuOpen" Value="true"/>
  145. <Trigger Property="IsEnabled" Value="false">
  146. <Setter Property="Foreground" Value="#FF9A9A9A"/>
  147. </Trigger>
  148. </ControlTemplate.Triggers>
  149. </ControlTemplate>
  150. <SolidColorBrush x:Key="Menu_Main_BD" Color="#FF3EAFE2"/>
  151. <SolidColorBrush x:Key="Menu_Main_BG" Color="#FF0C1F6B"/>
  152. <SolidColorBrush x:Key="Menu_Main_BG_Highlight" Color="#FF2DACCB"/>
  153. <SolidColorBrush x:Key="Menu_Main_BG_Outer" Color="#FFA3B7D3"/>
  154. <SolidColorBrush x:Key="Menu_Main_BD_Highlight" Color="#FF88A0CE"/>
  155. <SolidColorBrush x:Key="Menu_Main_BD_Shadow" Color="#FF111A2B"/>
  156. <LinearGradientBrush x:Key="Menu_Main_BG_Inner" EndPoint="0.5,1" StartPoint="0.5,0">
  157. <GradientStop Color="#FF5788BC" Offset="0"/>
  158. <GradientStop Color="#FF71A6CF" Offset="1"/>
  159. <GradientStop Color="#FF6191B8" Offset="0.4"/>
  160. <GradientStop Color="#FF375E97" Offset="0.401"/>
  161. <GradientStop Color="#FF77A9CE" Offset="0.9"/>
  162. </LinearGradientBrush>
  163. <SolidColorBrush x:Key="Menu_Main_BG_Outer_Highlight" Color="White"/>
  164. <LinearGradientBrush x:Key="Menu_Main_BG_Inner_Highlight" EndPoint="0.5,1" StartPoint="0.5,0">
  165. <GradientStop Color="#FFA4F0E0" Offset="0"/>
  166. <GradientStop Color="#FFBEFAE7" Offset="1"/>
  167. <GradientStop Color="#FF49BD9A" Offset="0.4"/>
  168. <GradientStop Color="#FF147B63" Offset="0.401"/>
  169. <GradientStop Color="#FF7DE8BD" Offset="0.9"/>
  170. </LinearGradientBrush>
  171. <ControlTemplate x:Key="SubMunu_ShowOnTop" TargetType="{x:Type MenuItem}">
  172. <Grid SnapsToDevicePixels="true">
  173. <Grid.ColumnDefinitions>
  174. <ColumnDefinition Width="20"/>
  175. <ColumnDefinition MinWidth="70"/>
  176. <ColumnDefinition Width="20"/>
  177. </Grid.ColumnDefinitions>
  178. <Path Data="M19.5,44.5 L10.25,44.5 0.5,34.75 0.5,10.25 10.25,0.5 19.5,0.5" Stretch="Fill" Stroke="{DynamicResource Menu_Main_BD}"/>
  179. <Path x:Name="Left_Path" Data="M19.5,44.5 L10.25,44.5 0.5,34.75 0.5,10.25 10.25,0.5 19.5,0.5" Stretch="Fill" Stroke="{DynamicResource Menu_Main_BD}" Margin="4,4,0,4" Fill="{DynamicResource Menu_Main_BG}"/>
  180. <Path Data="M19.5,44.5 L10.25,44.5 0.5,34.75 0.5,10.25 10.25,0.5 19.5,0.5" Stretch="Fill" Stroke="{DynamicResource Menu_Main_BD}" RenderTransformOrigin="0.5,0.5" Grid.Column="2">
  181. <Path.RenderTransform>
  182. <TransformGroup>
  183. <ScaleTransform ScaleY="1" ScaleX="-1"/>
  184. <SkewTransform AngleY="0" AngleX="0"/>
  185. <RotateTransform Angle="0"/>
  186. <TranslateTransform/>
  187. </TransformGroup>
  188. </Path.RenderTransform>
  189. </Path>
  190. <Path x:Name="Right_Path" Data="M19.5,44.5 L10.25,44.5 0.5,34.75 0.5,10.25 10.25,0.5 19.5,0.5" Stretch="Fill" Stroke="{DynamicResource Menu_Main_BD}" RenderTransformOrigin="0.5,0.5" Grid.Column="2" Margin="0,4,4,4" Fill="{DynamicResource Menu_Main_BG}">
  191. <Path.RenderTransform>
  192. <TransformGroup>
  193. <ScaleTransform ScaleY="1" ScaleX="-1"/>
  194. <SkewTransform AngleY="0" AngleX="0"/>
  195. <RotateTransform Angle="0"/>
  196. <TranslateTransform/>
  197. </TransformGroup>
  198. </Path.RenderTransform>
  199. </Path>
  200. <Border BorderBrush="{DynamicResource Menu_Main_BD}" BorderThickness="0,1" Grid.Column="1" Margin="-2,0">
  201. <Border x:Name="BG" BorderBrush="{DynamicResource Menu_Main_BD}" BorderThickness="0,1" Grid.Column="1" Margin="0,3" Background="{DynamicResource Menu_Main_BG}">
  202. <ContentPresenter x:Name="contentPresenter" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" ContentSource="Header" RecognizesAccessKey="True" HorizontalAlignment="Center" VerticalAlignment="Center" Cursor="Hand">
  203. </ContentPresenter>
  204. </Border>
  205. </Border>
  206. <Popup x:Name="PART_Popup" AllowsTransparency="true" HorizontalOffset="0" IsOpen="{Binding IsSubmenuOpen, RelativeSource={RelativeSource TemplatedParent}}" Placement="Top" PopupAnimation="{DynamicResource {x:Static SystemParameters.MenuPopupAnimationKey}}" VerticalOffset="-2" Focusable="false" MinWidth="150" Grid.Column="1">
  207. <ContentControl x:Name="SubMenuBorder" IsTabStop="false" Template="{DynamicResource {ComponentResourceKey ResourceId=SubmenuContent, TypeInTargetAssembly={x:Type FrameworkElement}}}">
  208. <ScrollViewer Style="{DynamicResource {ComponentResourceKey ResourceId=MenuScrollViewer, TypeInTargetAssembly={x:Type FrameworkElement}}}" CanContentScroll="true">
  209. <ItemsPresenter Margin="2" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Grid.IsSharedSizeScope="true" KeyboardNavigation.DirectionalNavigation="Cycle" KeyboardNavigation.TabNavigation="Cycle" Cursor="Hand"/>
  210. </ScrollViewer>
  211. </ContentControl>
  212. </Popup>
  213. </Grid>
  214. <ControlTemplate.Triggers>
  215. <Trigger Property="IsSuspendingPopupAnimation" Value="true">
  216. <Setter Property="PopupAnimation" TargetName="PART_Popup" Value="None"/>
  217. </Trigger>
  218. <Trigger Property="Icon" Value="{x:Null}"/>
  219. <Trigger Property="IsChecked" Value="true"/>
  220. <Trigger Property="HasDropShadow" SourceName="PART_Popup" Value="true"/>
  221. <Trigger Property="IsHighlighted" Value="true">
  222. <Setter Property="Fill" TargetName="Left_Path" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  223. <Setter Property="Fill" TargetName="Right_Path" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  224. <Setter Property="Background" TargetName="BG" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  225. </Trigger>
  226. <DataTrigger Binding="{Binding Selected}" Value="True">
  227. <Setter Property="Fill" TargetName="Left_Path" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  228. <Setter Property="Fill" TargetName="Right_Path" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  229. <Setter Property="Background" TargetName="BG" Value="{DynamicResource Menu_Main_BG_Highlight}"/>
  230. </DataTrigger>
  231. <Trigger Property="IsKeyboardFocused" Value="true"/>
  232. <Trigger Property="IsSubmenuOpen" Value="true"/>
  233. <Trigger Property="IsEnabled" Value="false">
  234. <Setter Property="Foreground" Value="#FF9A9A9A"/>
  235. </Trigger>
  236. </ControlTemplate.Triggers>
  237. </ControlTemplate>
  238. <ControlTemplate x:Key="SubMenu_ShowOnBottom" TargetType="{x:Type MenuItem}">
  239. <Border x:Name="BG" BorderBrush="{DynamicResource SubMenu_BD_Shadow}" BorderThickness="0,0,2,2" CornerRadius="0,0,5,5" Background="{DynamicResource SubMenu_BG}" Cursor="Hand">
  240. <Border x:Name="InnerBD" BorderBrush="{DynamicResource SubMenu_BD_Highlight}" BorderThickness="2,0,0,0" CornerRadius="0,0,4,4">
  241. <ContentPresenter x:Name="contentPresenter" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" Margin="6,0" Cursor="Hand" ContentSource="Header" RecognizesAccessKey="True" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  242. </Border>
  243. </Border>
  244. <ControlTemplate.Triggers>
  245. <DataTrigger Binding="{Binding Selected}" Value="True">
  246. <Setter Property="Background" TargetName="BG" Value="{DynamicResource SubMenu_BG_Select}"/>
  247. <Setter Property="BorderBrush" TargetName="BG" Value="{DynamicResource SubMenu_BD_Shadow_Select}"/>
  248. <Setter Property="BorderBrush" TargetName="InnerBD" Value="{DynamicResource SubMenu_BD_Highlight}"/>
  249. <Setter Property="Foreground" Value="{DynamicResource SubMenu_FG_Select}"/>
  250. <Setter Property="FontSize" Value="16"/>
  251. <Setter Property="Effect" TargetName="contentPresenter">
  252. <Setter.Value>
  253. <DropShadowEffect BlurRadius="5" Color="White" ShadowDepth="0"/>
  254. </Setter.Value>
  255. </Setter>
  256. </DataTrigger>
  257. <Trigger Property="IsHighlighted" Value="True">
  258. <Setter Property="Background" TargetName="BG" Value="{DynamicResource SubMenu_BG_MouseOver}"/>
  259. <Setter Property="Foreground" Value="{DynamicResource SubMenu_FG_Select}"/>
  260. </Trigger>
  261. <Trigger Property="IsEnabled" Value="false">
  262. <Setter Property="Foreground" Value="#FF9A9A9A"/>
  263. </Trigger>
  264. </ControlTemplate.Triggers>
  265. </ControlTemplate>
  266. <Style x:Key="BottomSubMenu" TargetType="MenuItem">
  267. <Setter Property="Command" Value="{Binding DataContext.MenuItemClickCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}"/>
  268. <Setter Property="CommandParameter" Value="{ Binding }"/>
  269. <Setter Property="Background" Value="Transparent"/>
  270. <Setter Property="Foreground" Value="{DynamicResource SubMenu_FG}"/>
  271. <Setter Property="FontFamily" Value="Arial"/>
  272. <Setter Property="MinWidth" Value="100"/>
  273. <Setter Property="Height" Value="35"/>
  274. <Setter Property="FontSize" Value="14"/>
  275. <Setter Property="FontWeight" Value="bold"/>
  276. <Setter Property="Template" Value="{StaticResource SubMenu_ShowOnBottom}"/>
  277. </Style>
  278. <Style x:Key="MainMenu" TargetType="MenuItem">
  279. <Setter Property="Command" Value="{Binding DataContext.MainMenuItemClickCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}}"/>
  280. <Setter Property="CommandParameter" Value="{ Binding }"/>
  281. <Setter Property="HorizontalContentAlignment" Value="{Binding HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
  282. <Setter Property="VerticalContentAlignment" Value="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
  283. <Setter Property="Background" Value="Transparent"/>
  284. <Setter Property="Foreground" Value="{DynamicResource FG_White}"/>
  285. <Setter Property="FontSize" Value="16"/>
  286. <Setter Property="FontWeight" Value="Bold"/>
  287. <Setter Property="MinWidth" Value="140"/>
  288. <Setter Property="Margin" Value="5,0,0,0"/>
  289. <Setter Property="Height" Value="45"/>
  290. <Setter Property="Template" Value="{StaticResource SubMunu_ShowOnTop}"/>
  291. </Style>
  292. </ResourceDictionary>