年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.7 KiB

4 months ago
<kui:BaseWindow
x:Class="Kingo.Plugin.MapView.Views.GoToXYUi.GoToXYUi"
xmlns:kui="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Kingo.Plugin.MapView.Views.GoToXYUi"
xmlns:input="clr-namespace:System.Windows.Input;assembly=PresentationCore"
mc:Ignorable="d" ResizeMode="NoResize" Title="转到XY"
d:DesignHeight="150" d:DesignWidth="300" Width="300" Height="150" Closed="BaseWindow_Closed">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Width="90" Height="25" Grid.Row="2" Grid.Column="2" x:Name="Btn_GotoXy" Content="定 位" Click="Btn_GotoXy_Click" />
<TextBlock Margin="5,0,0,0" Height="20" FontSize="14" Text="X:" />
<TextBox x:Name="Txt_X" Margin="20,5" Height="25" Width="90" MaxLength="20" PreviewTextInput="Txt_X_PreviewTextInput" input:InputMethod.IsInputMethodEnabled="False" />
<TextBlock Height="20" Margin="5,0,0,0" FontSize="14" Grid.Column="2" Text="Y:" />
<TextBox x:Name="Txt_Y" Margin="20,5" PreviewTextInput="Txt_Y_PreviewTextInput" input:InputMethod.IsInputMethodEnabled="False" Height="25" Grid.Column="2" Width="90" MaxLength="20" />
</Grid>
</kui:BaseWindow>