add-提交盘库测试版
parent
29e1a311be
commit
f4ebdf7317
@ -0,0 +1,52 @@
|
|||||||
|
<Window x:Class="Khd.Core.Wpf.TaskForm.AddNewStockForm"
|
||||||
|
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"
|
||||||
|
xmlns:local="clr-namespace:Khd.Core.Wpf.TaskForm"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
WindowState="Normal"
|
||||||
|
WindowStartupLocation="CenterScreen"
|
||||||
|
Background="DarkBlue"
|
||||||
|
Loaded="Window_Loaded"
|
||||||
|
Title="" Height="450" Width="800" ResizeMode="NoResize" WindowStyle="None">
|
||||||
|
<Grid>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
<RowDefinition Height="*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text=" 料箱号: " FontSize="30" Foreground="White" />
|
||||||
|
<TextBlock x:Name="txtInBox" Text="" Width="500" FontSize="30" Foreground="Black" Background="White" Margin="5,0,0,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text=" 条码号: " FontSize="30" Foreground="White" />
|
||||||
|
<TextBox x:Name="txtInBarCode" Text="" TextChanged="txtInBarCode_TextChanged" Width="500" FontSize="30" Foreground="Black" Background="White" Margin="5,0,0,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text="物料名称: " FontSize="30" Foreground="White" />
|
||||||
|
<TextBlock x:Name="materialName" Text="" Width="500" FontSize="30" Foreground="Black" Background="White" Margin="5,0,0,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row="3" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text="物料规格: " FontSize="30" Foreground="White" />
|
||||||
|
<TextBlock x:Name="materialSpec" Text="" Width="500" FontSize="30" Foreground="Black" Background="White" Margin="5,0,0,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row="4" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text=" 库存数: " FontSize="30" Foreground="White" />
|
||||||
|
<TextBox x:Name="txtInScan" Text="" Width="500" FontSize="30" Foreground="Black" Background="White" Margin="5,0,0,0"/>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row="5" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||||
|
<RepeatButton Background="LimeGreen" x:Name="ScanButton" Content="添加入库" Style="{StaticResource RepeatButtonPrimary}" Width="100" Height="40" FontSize="20" Margin="20,0,0,0" Click="InRawBaseLocaltion_Click" />
|
||||||
|
<RepeatButton Background="Yellow" x:Name="ScanButton11" Content="取 消" Style="{StaticResource RepeatButtonPrimary}" Width="100" Height="40" FontSize="20" Margin="200,0,0,0" Click="CancelBtn_Click" />
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
||||||
Loading…
Reference in New Issue