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