30 lines
2.2 KiB
XML
30 lines
2.2 KiB
XML
<Window x:Class="智能仓储WCS管理系统.CalibrationWindow"
|
||
xmlns:hc="https://handyorg.github.io/handycontrol"
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
mc:Ignorable="d"
|
||
Title="验证账号密码并标定" Height="440" Width="400" ResizeMode="NoResize" FontSize="25"
|
||
PreviewKeyDown="Window_PreviewKeyDown" Icon="/Resources/Logo.ico" WindowStartupLocation="CenterScreen" >
|
||
<Grid Background="AliceBlue">
|
||
<Grid.RowDefinitions>
|
||
<RowDefinition Height="200"/>
|
||
<RowDefinition Height="70"/>
|
||
<RowDefinition Height="70"/>
|
||
<RowDefinition Height="70"/>
|
||
</Grid.RowDefinitions>
|
||
<StackPanel>
|
||
<TextBlock Margin="5" Text="PCB板ID:13" Name="tagIdTxt"></TextBlock>
|
||
<TextBlock Margin="5" Text="模组编码:A01-R1C1" Name="moduleCodeTxt"></TextBlock>
|
||
<StackPanel HorizontalAlignment="Left" Orientation="Horizontal">
|
||
<TextBlock Margin="5" Text="偏差值:" Width="100" ></TextBlock>
|
||
<TextBox Margin="5" Background="White" Width="100" Name="offSetTxt" ></TextBox>
|
||
</StackPanel>
|
||
<TextBlock Margin="5" Width="400" TextWrapping="Wrap" Foreground="Red" FontWeight="DemiBold" Text="请确认该模组物料全部下架后再标定!"></TextBlock>
|
||
</StackPanel>
|
||
<ComboBox x:Name="ComboBoxId" Grid.Row="1" Margin="20,10" Height="50" Width="220" IsEditable="True" hc:InfoElement.Placeholder="请输入账号" Style="{StaticResource ComboBoxExtend}" hc:InfoElement.ContentHeight="50"></ComboBox>
|
||
<PasswordBox x:Name="PasswordBoxPass" Grid.Row="2" Height="50" Width="220" Margin="20,10" hc:InfoElement.Placeholder="请输入密码" Style="{StaticResource PasswordBoxExtend}"></PasswordBox>
|
||
<Button Background="DarkRed" Content="验证账号密码并标定" Width="250" Foreground="White" FontSize="24" Height="55" Grid.Row="3" HorizontalAlignment="Stretch" Click="Button_Click"></Button>
|
||
</Grid>
|
||
</Window> |