ContextMenuStyle.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <!--快捷工具展开收缩-->
  4. <ContextMenu x:Key="ExpendToolsContextMenu" FontSize="14">
  5. <ContextMenu.ItemContainerStyle>
  6. <Style TargetType="MenuItem">
  7. <Setter Property="Padding" Value="0,7,0,7"/>
  8. <Setter Property="VerticalContentAlignment" Value="Center"/>
  9. </Style>
  10. </ContextMenu.ItemContainerStyle>
  11. <MenuItem Name="ExpendMenuItem" Header="展开" IsEnabled="True">
  12. <MenuItem.Icon>
  13. <Path Fill="Black"
  14. Data="M5.24031 1.5H0.5V14.5H15.5V4H7.24031L5.24031 1.5ZM1.5 13.5V2.5H4.75969L6.75969 5H14.5V13.5H1.5ZM4 7.5H12V6.5H4V7.5Z">
  15. <Path.RenderTransform>
  16. <TranslateTransform X="3.0000" Y="0"/>
  17. </Path.RenderTransform>
  18. </Path>
  19. </MenuItem.Icon>
  20. </MenuItem>
  21. </ContextMenu>
  22. </ResourceDictionary>