You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.0 KiB
XML
42 lines
2.0 KiB
XML
<Window x:Class="XGLFinishPro.Views.ShouPeiWin"
|
|
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="ShouPeiWin" Height="200" Width="400" WindowStartupLocation="CenterScreen" WindowStyle="None" Closing="Window_Closing">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0" FontSize="18" Content="请输入筛盘车号码" VerticalContentAlignment="Center"/>
|
|
<TextBox x:Name="txtBarcode" Grid.Row="1" FontSize="18" Width="300" Height="45" VerticalContentAlignment="Center" TextChanged="txtBarcode_TextChanged"/>
|
|
<Label x:Name="lbMsg" Grid.Row="2" Foreground="Red" VerticalContentAlignment="Center" FontSize="18"/>
|
|
<StackPanel Grid.Row="3" VerticalAlignment="Center" Orientation="Horizontal">
|
|
<Button
|
|
x:Name="btnOK"
|
|
Width="100"
|
|
Height="40"
|
|
Margin="60,0,0,0"
|
|
Background="#2F82E7"
|
|
Content="确定"
|
|
FontSize="20"
|
|
Foreground="White"
|
|
IsCancel="True" Click="btnOK_Click" />
|
|
<Button
|
|
x:Name="btnCancel"
|
|
Width="100"
|
|
Height="40"
|
|
Margin="60,0,0,0"
|
|
Background="#2F82E7"
|
|
Content="取消"
|
|
FontSize="20"
|
|
Foreground="White"
|
|
IsCancel="True" Click="btnCancel_Click"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|