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.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: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> |
|
<TextBox 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"> |
|
<Button Content="确 定" Height="23" Name="btnSave" Width="75" Margin="15,0" Click="BtnSave_Click" /> |
|
<Button Content="取 消" Height="23" Name="btnCancel" Width="75" Margin="15,0" Click="BtnCancel_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|