AITRf.xaml 1.8 KB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITRf"
  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" d:DesignHeight="78" d:DesignWidth="90" BorderThickness="1" x:Name="self" >
  7. <Grid >
  8. <Grid.RowDefinitions>
  9. <RowDefinition></RowDefinition>
  10. <RowDefinition></RowDefinition>
  11. </Grid.RowDefinitions>
  12. <Grid Margin="0" MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand" Opacity="1" MouseEnter="Grid_MouseEnter">
  13. <Border Style="{x:Null}" Background="Transparent" Margin="-2" x:Name="bdRectangle" BorderThickness="1">
  14. <Rectangle Style="{x:Null}" RadiusX="2" RadiusY="2" Name="rectBkground" Stroke="Black" Margin="1" Opacity="1" Fill="Gray" StrokeThickness="1"/>
  15. </Border>
  16. <Label Background="Transparent" VerticalContentAlignment="Center" FontFamily="Verdana" HorizontalContentAlignment="Center" x:Name="labelValue" Foreground="MidnightBlue" />
  17. </Grid>
  18. <Grid Margin="0" Grid.Row="1" MouseLeftButtonUp="Grid_MouseLeftButtonUp" Cursor="Hand" Opacity="1" MouseEnter="Grid_MouseEnter">
  19. <Border Style="{x:Null}" Background="Transparent" Margin="-2" BorderThickness="1">
  20. <Rectangle Style="{x:Null}" RadiusX="2" RadiusY="2" Stroke="Black" Margin="1" Opacity="1" Fill="Gray" StrokeThickness="1"/>
  21. </Border>
  22. <Label x:Name="LabelPower" VerticalContentAlignment="Center" FontFamily="Verdana" HorizontalContentAlignment="Center" Foreground="MidnightBlue" />
  23. </Grid>
  24. </Grid>
  25. </UserControl>