AITThrottleValve.xaml 1.3 KB

123456789101112131415
  1. <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITThrottleValve"
  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. <UserControl.RenderTransform>
  6. <RotateTransform x:Name="rotateTransform" Angle="20" CenterX="18" CenterY="18"/>
  7. </UserControl.RenderTransform>
  8. <Grid Background=" Transparent" Cursor="Hand" MouseEnter="Grid_MouseEnter" MouseLeftButtonUp="Grid_MouseLeftButtonUp">
  9. <Ellipse Stroke="Black" Fill="White" Height="34" Width="34" />
  10. <Line X1="3" Y1="17" X2="31" Y2="17" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  11. <Line X1="3" Y1="17" X2="9" Y2="15" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  12. <Line X1="3" Y1="17" X2="9" Y2="19" Stroke="Black" StrokeThickness="1.2" StrokeStartLineCap="Round" StrokeEndLineCap="Round" />
  13. <!--Label Background="DarkGreen" FontFamily="Arial" Foreground="White" FontSize="12" HorizontalContentAlignment="Center" ContentStringFormat="F1" Name="labelValue" Margin="-13,-26,-24.4,0" Height="22" VerticalAlignment="Top"></-->
  14. </Grid>
  15. </UserControl>