AnalogControl2.xaml 1.5 KB

1234567891011121314151617181920
  1. <UserControl x:Class="Aitex.Core.UI.Control.AnalogControl2"
  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. mc:Ignorable="d" Height="38" Width="45" BorderThickness="1">
  7. <Grid Height="38" MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand" Opacity="1" MouseEnter="Grid_MouseEnter">
  8. <Grid Height="20" Margin="0,-20,0,0">
  9. <Border Background="Transparent" x:Name="bdRectangle" BorderThickness="1">
  10. <Rectangle RadiusX="2" RadiusY="2" Name="rectBkground" Stroke="Gray" Margin="1" Opacity="1" Fill="Green" StrokeThickness="1"/>
  11. </Border>
  12. <Label Content="0.0" FontFamily="Arial,SimSun" FontSize="10" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" x:Name="labelValue" Margin="0,-1,-2,0" Foreground="LightYellow" />
  13. </Grid>
  14. <Grid Height="18" Margin="1,14,1,1">
  15. <Rectangle Name="rectSetPoint" RadiusX="2" RadiusY="2" Stroke="Gray" Margin="1" Opacity="1" Fill="#999999" StrokeThickness="1"/>
  16. <Label Content="0.0" FontFamily="Arial,SimSun" FontSize="10" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" x:Name="labelSetPoint" Margin="0,-2,-2,0" Foreground="LightYellow" />
  17. </Grid>
  18. </Grid>
  19. </UserControl>