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.

53 lines
2.1 KiB
XML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<Window x:Class="SlnMesnac.WPF.Page.MannulResignBoxWindow"
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:SlnMesnac.WPF.Page"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
mc:Ignorable="d"
Title="CreateMoveWindow" Height="450" Width="800" Background="#062241" WindowStartupLocation="CenterScreen">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.2*" />
<RowDefinition Height="0.6*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TextBlock Text="手动入库" Foreground="White" FontSize="25" HorizontalAlignment="Center" />
<!-- 中间部分:两个 ComboBox -->
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<!-- 起点 ComboBox -->
<ComboBox x:Name="StartComboBox" Foreground="LimeGreen"
Grid.Column="0"
Margin="20"
FontSize="20"
VerticalAlignment="Center"
materialDesign:HintAssist.Hint="选择库位" />
<!-- 终点 ComboBox -->
<TextBox x:Name="BoxTextbox" Foreground="LimeGreen"
Grid.Column="1"
Margin="20"
FontSize="20"
VerticalAlignment="Center"
materialDesign:HintAssist.Hint="在此输入箱子编号如SHS000000030" />
</Grid>
<!-- 底部:确认按钮 -->
<Button x:Name="ConfirmButton"
Grid.Row="2"
Content="确认"
Width="200"
Height="50"
FontSize="20"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Click="ConfirmButton_Click" />
</Grid>
</Window>