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.
32 lines
2.1 KiB
32 lines
2.1 KiB
<windows1:BaseWindow |
|
xmlns:windows1="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.BuildZLDatabase.View.IncrementalAggregation" |
|
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:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" Title="增量汇总" Width="600" Height="180" ResizeMode="NoResize" > |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition/> |
|
<RowDefinition Height="25" /> |
|
<RowDefinition Height="auto" /> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition /> |
|
<ColumnDefinition Width="50"/> |
|
</Grid.ColumnDefinitions> |
|
<Label Content="城镇村范围:" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" /> |
|
<ComboBox Grid.Column="1" Height="30" VerticalContentAlignment="Center" SelectedIndex="0" x:Name="combCZCFW" IsEditable="False"> |
|
<ComboBoxItem Content="基础_城镇村等用地" /> |
|
</ComboBox> |
|
<btn:KImgButton Grid.Column="2" x:Name="btnSelectCZCLayer" Visibility="Collapsed" Height="30" VerticalContentAlignment="Center" Margin="10,0" Content="选 择" /> |
|
<Label Content="注:城镇村范围应选择使用国家统一下发的最新范围(根据年度变更规则生成变更一览表)" Foreground="Red" Margin="20,0,0,0" Grid.Row="1" Grid.ColumnSpan="3" /> |
|
<StackPanel Grid.ColumnSpan="3" Grid.Row="2" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,15"> |
|
<btn:KImgButton Height="30" x:Name="btnOK" VerticalContentAlignment="Center" Margin="10,0" Content="确 定" Click="btn_oK_Click" /> |
|
<btn:KImgButton Height="30" x:Name="btnCancel" VerticalContentAlignment="Center" Margin="10,0" Content="取 消" Click="btn_nO_Click" /> |
|
</StackPanel> |
|
</Grid> |
|
</windows1:BaseWindow> |