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

<Window x:Class="SlnMesnac.WPF.Page.CreateMoveWindow"
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 -->
<ComboBox x:Name="EndComboBox" Foreground="LimeGreen"
Grid.Column="1"
Margin="20"
FontSize="20"
VerticalAlignment="Center"
materialDesign:HintAssist.Hint="选择终点" />
</Grid>
<!-- 底部:确认按钮 -->
<Button x:Name="ConfirmButton"
Grid.Row="2"
Content="确认"
Width="200"
Height="50"
FontSize="20"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Click="ConfirmButton_Click" />
</Grid>
</Window>