AITThrottleValve2.xaml 1.8 KB

12345678910111213141516171819202122
  1. <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITThrottleValve2"
  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" MinWidth="36" MaxWidth="36" MinHeight="36" MaxHeight="36" BorderThickness="1 1 1 1">
  5. <Grid>
  6. <Grid Background=" Transparent" Cursor="Hand" MouseEnter="Grid_MouseEnter" MouseLeftButtonUp="Grid_MouseLeftButtonUp">
  7. <Grid.RenderTransform>
  8. <RotateTransform x:Name="rotateTransform" Angle="20" CenterX="18" CenterY="18" />
  9. </Grid.RenderTransform>
  10. <Ellipse Stroke="Black" Fill="White" Height="34" Width="34" />
  11. <Line X1="3" Y1="17" X2="31" Y2="17" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  12. <Line X1="3" Y1="17" X2="9" Y2="15" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  13. <Line X1="3" Y1="17" X2="9" Y2="19" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  14. </Grid>
  15. <Label Background="DarkGreen" FontFamily="Arial" Foreground="White" FontSize="12" HorizontalContentAlignment="Center" ContentStringFormat="F1" Name="PositionValue" Margin="39,-16,-76,0" Height="22" VerticalAlignment="Top"/>
  16. <Label FontFamily="Arial" FontSize="12" Name="PositionUnit" Margin="110,-38,-121,6" Height="22" Content="%"/>
  17. <Label Background="CadetBlue" FontFamily="Arial" Foreground="White" FontSize="12" HorizontalContentAlignment="Center" ContentStringFormat="F1" Name="PressureValue" Margin="39,10,-76,0" Height="22" VerticalAlignment="Top"/>
  18. <Label FontFamily="Arial" FontSize="12" Name="PressureUnit" Margin="108,10,-119,2" Height="22" Content="mTorr"/>
  19. </Grid>
  20. </UserControl>