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.
		
		
		
		
		
			
		
			
				
					
					
						
							28 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							1.8 KiB
						
					
					
				<kui:BaseWindow | 
						|
    x:Class="Kingo.Plugin.MapView.Views.GoToXYUi.GoToXYUi" | 
						|
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
						|
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | 
						|
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
						|
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | 
						|
    xmlns:kui="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" | 
						|
    xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
    xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" | 
						|
    xmlns:input="clr-namespace:System.Windows.Input;assembly=PresentationCore" | 
						|
    mc:Ignorable="d"  ResizeMode="NoResize"  Title="转到XY"  | 
						|
             d:DesignHeight="70" d:DesignWidth="370" Width="380" Height="100" Closed="BaseWindow_Closed"> | 
						|
    <Grid> | 
						|
        <Grid.RowDefinitions> | 
						|
            <RowDefinition/> | 
						|
        </Grid.RowDefinitions> | 
						|
        <Grid.ColumnDefinitions> | 
						|
            <ColumnDefinition/> | 
						|
            <ColumnDefinition/> | 
						|
            <ColumnDefinition Width="90"/> | 
						|
        </Grid.ColumnDefinitions> | 
						|
        <kuiBtn:KImgButton  Width="80" Height="30" Grid.Row="2" Grid.Column="3" x:Name="Btn_GotoXy" Content="定  位" Click="Btn_GotoXy_Click" /> | 
						|
        <TextBlock  Margin="5,0,0,0"  Height="20" FontSize="14"  Text="X:" /> | 
						|
        <dxe:TextEdit x:Name="Txt_X" Margin="20,5"  Height="30" Width="100" MaxLength="20" PreviewTextInput="Txt_X_PreviewTextInput" input:InputMethod.IsInputMethodEnabled="False" /> | 
						|
        <TextBlock Height="20"  Margin="5,0,0,0" FontSize="14" Grid.Column="1" Text="Y:" /> | 
						|
        <dxe:TextEdit x:Name="Txt_Y"  Margin="20,5" PreviewTextInput="Txt_Y_PreviewTextInput" input:InputMethod.IsInputMethodEnabled="False" Height="30" Grid.Column="1" Width="100" MaxLength="20" /> | 
						|
    </Grid> | 
						|
</kui:BaseWindow>
 | 
						|
 |