Screw.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <UserControl x:Class="CyberX8_Themes.UserControls.Screw"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:CyberX8_Themes.UserControls"
  7. mc:Ignorable="d" Name="self"
  8. d:DesignHeight="15" d:DesignWidth="15">
  9. <Grid>
  10. <Ellipse Fill="Gray" Margin="2.5,2.5,2.25,2.25" Stroke="Black" />
  11. <Ellipse Fill="White" Margin="7.05,7.05,7.05,7" Panel.ZIndex="1"/>
  12. <Path Fill="Gray" Stroke="Black" StrokeThickness="1" Width="10" Height="10">
  13. <Path.Data>
  14. <PathGeometry>
  15. <PathGeometry.Figures>
  16. <PathFigureCollection>
  17. <PathFigure StartPoint="5,0">
  18. <PathFigure.Segments>
  19. <PathSegmentCollection>
  20. <ArcSegment Point="10,5" Size="5,5" SweepDirection="Counterclockwise" />
  21. <ArcSegment Point="5,10" Size="5,5" SweepDirection="Counterclockwise" />
  22. <ArcSegment Point="0,5" Size="5,5" SweepDirection="Counterclockwise" />
  23. <ArcSegment Point="5,0" Size="5,5" SweepDirection="Counterclockwise" />
  24. </PathSegmentCollection>
  25. </PathFigure.Segments>
  26. </PathFigure>
  27. </PathFigureCollection>
  28. </PathGeometry.Figures>
  29. </PathGeometry>
  30. </Path.Data>
  31. </Path>
  32. </Grid>
  33. </UserControl>