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.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							2.0 KiB
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							2.0 KiB
						
					
					
				<windows:BaseWindow x:Class="Kingo.Plugin.MapView.Views.V_AddLayerGroup" | 
						|
             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" | 
						|
             xmlns:kui="clr-namespace:KUI;assembly=KUI" | 
						|
             xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" | 
						|
             xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" | 
						|
             xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" | 
						|
             mc:Ignorable="d" Title="添加图层分组" | 
						|
             Height="150" Width="350"> | 
						|
 | 
						|
    <Grid> | 
						|
        <Grid.RowDefinitions> | 
						|
            <RowDefinition Height="*" /> | 
						|
            <RowDefinition Height="60" /> | 
						|
        </Grid.RowDefinitions> | 
						|
        <Grid.ColumnDefinitions> | 
						|
            <ColumnDefinition Width="100" /> | 
						|
            <ColumnDefinition Width="*" /> | 
						|
        </Grid.ColumnDefinitions> | 
						|
        <TextBlock Grid.Column="0" Grid.Row="0"  Text="图层组名称:" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="15,0,10,0" ></TextBlock> | 
						|
        <dxe:TextEdit Grid.Column="1" Grid.Row="0"   x:Name="txtGroupName"  kui:ControlAttachProperty.CornerRadius="2"  Height="30" Margin="1,5,20,5" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"  Text="{Binding [BGDL],Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> | 
						|
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="1" Grid.ColumnSpan="2"> | 
						|
            <kuiBtn:KImgButton Content="确  定" Height="30" Name="btnSave" Width="75" Margin="15,0" Click="BtnSave_Click" /> | 
						|
            <kuiBtn:KImgButton Content="取  消" Height="30" Name="btnCancel" Width="75" Margin="15,0" Click="BtnCancel_Click" /> | 
						|
        </StackPanel> | 
						|
    </Grid> | 
						|
</windows:BaseWindow>
 | 
						|
 |