VacuumPump.xaml 851 B

123456789101112131415
  1. <UserControl x:Class="Aitex.Core.UI.Control.VacuumPump"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="36" Width="36">
  5. <UserControl.RenderTransform>
  6. <RotateTransform x:Name="rotateTransform" Angle="90" CenterX="18" CenterY="18"/>
  7. </UserControl.RenderTransform>
  8. <Canvas MouseRightButtonUp="canvas_MouseRightButtonUp">
  9. <Ellipse Stroke="Black" Fill="White" Height="36" Width="36" Opacity="1" />
  10. <Line X1="10" Y1="2" X2="36" Y2="16" StrokeThickness="1" Stroke="Black"/>
  11. <Line X1="10" Y1="34" X2="36" Y2="20" StrokeThickness="1" Stroke="Black"/>
  12. <Ellipse Stroke="Black" Opacity="1" x:Name="EllipseInCircle" Fill="White" Height="20" Width="20" Canvas.Left="8" Canvas.Top="8" />
  13. </Canvas>
  14. </UserControl>