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

61 lines
4.1 KiB

<UserControl
x:Class="Kingo.Plugin.YJJK.View.ViewXZQ_TQ"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
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"
mc:Ignorable="d"
d:DesignHeight="280" d:DesignWidth="800">
<Grid Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="230*"/>
<ColumnDefinition Width="230*"/>
<ColumnDefinition Width="230*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="80"/>
<RowDefinition Height="150"/>
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<GroupBox Header="提取图层" Grid.Row="0" Margin="8" Grid.ColumnSpan="3">
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="CheckBox_gddb" Content="耕地等别数据提取"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="CheckBox_cjdcq" Content="村级调查区"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox x:Name="CheckBox_xzq" Content="行政区"/>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</GroupBox>
<GroupBox Header="调入前数据" Grid.Row="1" Margin="8,8,8,0" Grid.ColumnSpan="3" Height="142" VerticalAlignment="Top">
<dxlc:LayoutGroup Orientation="Vertical" Height="108">
<dxlc:LayoutItem Label="村级调查区:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<dxe:ButtonEdit x:Name="btnCJDCQ" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True">
<dxe:ButtonInfo x:Name="btnCJDCQPath" Content="选择" Click="BtnCJDCQPath_Click" />
</dxe:ButtonEdit>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="行政区数据:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<dxe:ButtonEdit x:Name="btnXZQ" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True">
<dxe:ButtonInfo x:Name="btnXZQPath" Content="选择" Click="BtnXZQPath_Click" />
</dxe:ButtonEdit>
</dxlc:LayoutItem>
<dxlc:LayoutItem IsRequired="True" Label="" LabelPosition="Top">
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="cb_XZQDMChange" Margin="0,0" Content="县级行政区代码发生变化" IsHitTestVisible="True" />
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="cb_ZLDWMCChange" Margin="0,0" Content="村级调查区名称发生变化" IsHitTestVisible="True"/>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</GroupBox>
<TextBlock Text="注:根据地类图斑更新层数据,提取发生变化的行政区更新层、更新过程层、村级调查区更新层、更新过程层数据" TextWrapping="WrapWithOverflow" Foreground="Red" VerticalAlignment="Top" HorizontalAlignment="Left" Grid.Row="2" Grid.ColumnSpan="2" Margin="10,10,0,0" Height="30" Width="507" />
</Grid>
</UserControl>