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
						
					
					
				<windows:BaseWindow | 
						|
    x:Class="Kingo.Plugin.MapView.Views.AppMenuView.UCProjectInfoSetting" | 
						|
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
						|
    xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" | 
						|
    xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" | 
						|
    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:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" | 
						|
    xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
    xmlns:kui="clr-namespace:KUI;assembly=KUI" | 
						|
    mc:Ignorable="d" Title="用户信息设置" | 
						|
             Height="150" Width="500"> | 
						|
    <Grid Margin="5"> | 
						|
        <Grid.RowDefinitions> | 
						|
            <RowDefinition/> | 
						|
            <RowDefinition/> | 
						|
        </Grid.RowDefinitions> | 
						|
        <dxlc:LayoutItem Grid.Row="0" Label="用户名:" LabelHorizontalAlignment="Right" VerticalAlignment="Center"> | 
						|
            <dxe:TextEdit Name="txtUserName" Height="30"  AllowNullInput="False" ValidateOnEnterKeyPressed="True" NullText="请输入用户名" ShowNullText="True" InvalidValueBehavior="AllowLeaveEditor" > | 
						|
            </dxe:TextEdit> | 
						|
        </dxlc:LayoutItem> | 
						|
        <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center"> | 
						|
            <kuiBtn:KImgButton x:Name="btnSave" Grid.Column="0" Content="确  定" HorizontalAlignment="Left" Height="30" Width="80" Click="BtnSave_Click" /> | 
						|
            <kuiBtn:KImgButton x:Name="btnCancel" Grid.Column="0" Content="取  消" HorizontalAlignment="Left" Height="30" Width="80" Click="BtnCancel_Click" Margin="20,0,0,0" /> | 
						|
        </StackPanel> | 
						|
    </Grid> | 
						|
</windows:BaseWindow>
 | 
						|
 |