Plane.FormationCreator/Plane.FormationCreator/PlaneMessageBox.xaml
zxd 9a1ec7384a 删除了修改航点名的日志
修改了发送千寻RTK的配置界面
2019-07-18 11:35:56 +08:00

32 lines
1.7 KiB
XML

<c:MetroWindow x:Class="Plane.FormationCreator.PlaneMessageBox"
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:c="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:local="clr-namespace:Plane.FormationCreator"
mc:Ignorable="d"
WindowStartupLocation="CenterScreen"
TitleForeground="White"
FontSize="15"
Title="PlaneMessageBox" Height="200" Width="600"
MinHeight="200" MinWidth="600"
MaxHeight="200" MaxWidth="600"
WindowStyle="ToolWindow" Visibility="Visible" ShowMinButton="False" ShowMaxRestoreButton="False" ShowCloseButton="False" IsCloseButtonEnabled="False" IsMinButtonEnabled="False" IsMaxRestoreButtonEnabled="False" IsWindowDraggable="False"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Name="messageBoxText" Text="提示" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<TextBox Name="textbox" Width="450" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center"
PreviewKeyDown="Box_OnKeyDown"/>
<WrapPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Width="80" Margin="25,0" Content="确认" Click="ButtonOK_Click"/>
<Button Width="80" Margin="25,0" Content="取消" Click="ButtonCancel_Click"/>
</WrapPanel>
</Grid>
</c:MetroWindow>