年度变更建库软件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.

27 lines
1.8 KiB

<windows:BaseWindow
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
x:Class="Kingo.Plugin.MapView.Views.AppMenuView.UCProjectInfoSetting"
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:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
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="25" AllowNullInput="False" ValidateOnEnterKeyPressed="True" NullText="请输入用户名" ShowNullText="True" InvalidValueBehavior="AllowLeaveEditor" >
</dxe:TextEdit>
</dxlc:LayoutItem>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
<kui:KFontIconButton FIcon="" x:Name="btnSave" Grid.Column="0" Content="确 定" HorizontalAlignment="Left" Height="25" Width="70" Click="BtnSave_Click"/>
<kui:KFontIconButton FIcon="" x:Name="btnCancel" Grid.Column="0" Content="取 消" HorizontalAlignment="Left" Height="25" Width="70" Click="BtnCancel_Click" Margin="20,0,0,0"/>
</StackPanel>
</Grid>
</windows:BaseWindow>