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.

22 lines
1.4 KiB
Plaintext

<Window x:Class="SlnMesnac.WPF.Page.WindowPage.SelectWindow"
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.WindowPage"
mc:Ignorable="d" Topmost="True" StateChanged="Window_StateChanged"
Title="是否继续启动" Height="350" Width="800" Background="#1254AB">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="请检查3楼拆包机是否有托盘需要移走" FontSize="35" Margin="10" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" Margin="10">
<Button Content="继续启动" FontSize="25" Click="Continue_Click" Height="40" Background="LimeGreen" BorderBrush="#0099FF" Margin="0,0,10,0"/>
<Button Content="移走空托盘" FontSize="25" Click="MoveTray_Click" Height="40" Background="#B78027" BorderBrush="#0099FF" Margin="80,0,0,0" Width="146"/>
</StackPanel>
</Grid>
</Window>