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.
39 lines
2.7 KiB
39 lines
2.7 KiB
<UserControl x:Class="Kingo.Plugin.YJJK.View.ViewCZC_TQ" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" |
|
d:DesignHeight="200" d:DesignWidth="800"> |
|
<Grid Background="White"> |
|
<GroupBox Header="城镇村数据提取" Grid.Row="0" Margin="8" Grid.ColumnSpan="3"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="30" /> |
|
<RowDefinition Height="25" /> |
|
<RowDefinition Height="30" /> |
|
<RowDefinition Height="30" /> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition /> |
|
</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="选 择" /> |
|
<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="20,0,0,0" TextWrapping="Wrap" Foreground="Red" ></TextBlock> |
|
</StackPanel> |
|
</Grid> |
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|