AITParameterCheckBox.xaml 1.5 KB

12345678910111213141516171819202122232425
  1. <UserControl x:Class="Aitex.Core.UI.DeviceControl.AITParameterCheckBox"
  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="35" d:DesignWidth="500" x:Name="self">
  7. <Grid HorizontalAlignment="Stretch" Margin="0">
  8. <Grid.ColumnDefinitions>
  9. <ColumnDefinition Width="100"></ColumnDefinition>
  10. <ColumnDefinition Width="100"></ColumnDefinition>
  11. <ColumnDefinition Width="100"></ColumnDefinition>
  12. </Grid.ColumnDefinitions>
  13. <Rectangle Grid.Column="0" Fill="#376092" Margin="0" Stroke="White" StrokeThickness="1"></Rectangle>
  14. <TextBlock Grid.Column="0" FontSize="15" Text=" " Foreground="White" />
  15. <Rectangle Grid.Column="1" Fill="#95B3D7" Margin="0" Stroke="White" StrokeThickness="1"></Rectangle>
  16. <CheckBox Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" />
  17. <Rectangle Grid.Column="2" Fill="#95B3D7" Margin="0" Stroke="White" StrokeThickness="1"></Rectangle>
  18. <Button Grid.Column="2" Content="{DynamicResource GlobalLableConfigButtonSet}" Command="{Binding SetConfigCommand}" CommandParameter="Barcode" FontSize="16" Width="80" Height="26" Margin="0" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  19. </Grid>
  20. </UserControl>