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

41 lines
2.9 KiB

<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
x:Class="Kingo.Plugin.MakeTaskPackage.View.FrmAddListLayerGroup"
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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:local="clr-namespace:Kingo.Plugin.MakeTaskPackage.View"
xmlns:kui="clr-namespace:KUI;assembly=KUI"
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI"
mc:Ignorable="d"
Width="450" Height="150" Title="添加图层组" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" HorizontalAlignment="Stretch" Orientation="Horizontal" Margin="0,5,0,0" Grid.ColumnSpan="2" >
<TextBlock Text="图层组名:" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="10,0,0,0"/>
<TextBox x:Name="txtGroupName" Height="30" Width="350" />
</StackPanel>
<!--<StackPanel Grid.Row="0" HorizontalAlignment="Stretch" Orientation="Horizontal" Margin="0,5,0,0" Grid.ColumnSpan="2" >
<TextBlock Text="文件路径:" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="10,0,0,0"/>
--><!--<TextBox x:Name="txtLayerPath" Height="30" Width="350" />--><!--
<ComboBox Height="30" x:Name="cobLayer" VerticalAlignment="Center" Width="350" DisplayMemberPath="NAME" SelectedValuePath="CODE" >
</ComboBox>
<btn:KImgButton x:Name="btnSelectLayerPath" Content="选 择" Margin="10,0,5,0" Width="96" Height="30" HorizontalAlignment="Left" Click="btnSelectLayerPath_Click" />
</StackPanel>-->
<!--<StackPanel Grid.Row="1" HorizontalAlignment="Stretch" Orientation="Horizontal" Margin="0,5,0,0" Grid.ColumnSpan="2" >
<TextBlock Text="分组名称:" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="10,0,0,0"/>
<ComboBox Height="30" x:Name="cobLayerGroup" VerticalAlignment="Center" Width="350" IsReadOnly="False" DisplayMemberPath="FileAliasName" SelectedValuePath="FileName" >
</ComboBox>
</StackPanel>-->
<StackPanel Grid.Row="2" Margin="0,10,0,5" Orientation="Horizontal" VerticalAlignment="Stretch" HorizontalAlignment="Center" >
<btn:KImgButton x:Name="btnOK" Content="确 定" Height="30" Width="100" Click="btnOK_Click"/>
<btn:KImgButton x:Name="btnCancel" Content="取 消" Width="96" Height="30" Margin="20,0,0,0" Foreground="White" Click="btnCancel_Click" />
</StackPanel>
</Grid>
</windows:BaseWindow>