MinButton.xaml 772 B

123456789101112131415161718192021222324
  1. <UserControl
  2. x:Class="PicView.UI.UserControls.MinButton"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  5. <Button
  6. x:Name="TheButton"
  7. Width="33"
  8. Height="33"
  9. Margin="5,0,0,0"
  10. VerticalAlignment="Center"
  11. BorderThickness="0"
  12. DockPanel.Dock="Right"
  13. FocusVisualStyle="{x:Null}"
  14. Focusable="False"
  15. ToolTip="Minimize">
  16. <Button.Background>
  17. <SolidColorBrush x:Name="MinButtonBrush" />
  18. </Button.Background>
  19. <Path
  20. Data="F1M0,6L0,9 9,9 9,6 0,6z"
  21. Fill="{StaticResource MainColorBrush}"
  22. SnapsToDevicePixels="True" />
  23. </Button>
  24. </UserControl>