|
|
|
|
<window:BaseWindow x:Class="Kingo.Plugin.BuildZLDatabase.View.FrmCZCBG"
|
|
|
|
|
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:window="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI"
|
|
|
|
|
mc:Ignorable="d" Title="城镇村范围变更" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
|
|
|
|
|
Height="260" Width="500">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition Height="30" />
|
|
|
|
|
<RowDefinition Height="60" />
|
|
|
|
|
<RowDefinition Height="30" />
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="100"/>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="30"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Label Content="城镇村范围:" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" />
|
|
|
|
|
<ComboBox Grid.Column="1" Height="30" VerticalContentAlignment="Center" x:Name="combCZCFW" SelectedIndex="0" IsEditable="False">
|
|
|
|
|
<ComboBoxItem Content="基础_城镇村等用地" />
|
|
|
|
|
</ComboBox>
|
|
|
|
|
<btn:KImgButton Grid.Column="2" x:Name="btnSelectCZCLayer" Visibility="Collapsed" Height="30" VerticalContentAlignment="Center" Margin="10,0" Content="选 择" Click="BtnSelectCZCLayer_Click" />
|
|
|
|
|
<Label Content="注:城镇村范围应选择使用国家统一下发的最新范围" Foreground="Red" Margin="30,0,0,0" Grid.Row="1" Grid.ColumnSpan="3" />
|
|
|
|
|
<StackPanel Grid.Row="2" Grid.ColumnSpan="3" Orientation="Horizontal" >
|
|
|
|
|
<CheckBox x:Name="ckbXDM" Content="县代码发生变化" Margin="30,8,0,0" IsHitTestVisible="True" />
|
|
|
|
|
<CheckBox x:Name="LessThan30Missing" Content="小于30平图斑是否灭失" Margin="30,8,0,0" />
|
|
|
|
|
<CheckBox x:Name="ckbDelMinMJ" Content="忽略面积小于0.01的数据" Margin="30,8,0,0" IsEnabled="True" IsChecked="False" Visibility="Collapsed" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="3" Grid.ColumnSpan="3">
|
|
|
|
|
<TextBlock Text="注:将国家下发的基础数据加载到工程中,同时会自动将国家下发的基础数据拷贝至工作目录下的年初数据中" Margin="30,0,0,0" TextWrapping="Wrap" Width="440" Foreground="Red" ></TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.ColumnSpan="3" Grid.Row="4" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,15">
|
|
|
|
|
<btn:KImgButton Height="30" x:Name="btnOK" VerticalContentAlignment="Center" Margin="10,0" Content="确 定" Click="BtnOK_Click" />
|
|
|
|
|
<btn:KImgButton Height="30" x:Name="btnCancel" VerticalContentAlignment="Center" Margin="10,0" Content="取 消" Click="BtnCancel_Click" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</window:BaseWindow>
|