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

69 lines
5.1 KiB

<windows:BaseWindow
x:Class="Kingo.Plugin.BuildZLDatabase.View.UCExtractDistrict"
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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol"
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI"
mc:Ignorable="d" Title="行政区数据提取"
d:DesignHeight="55" d:DesignWidth="00" Width="700" Height="320" ResizeMode="NoResize">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="20"/>
<RowDefinition Height="auto"/>
</Grid.RowDefinitions>
<StackPanel VerticalAlignment="Stretch" Orientation="Vertical" HorizontalAlignment="Stretch">
<!--<Label >境界与政区提取</Label>-->
<dxlc:LayoutControl Orientation="Vertical" HorizontalAlignment="Stretch" >
<dxlc:LayoutItem IsRequired="True" Label="提取图层" LabelPosition="Top">
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="CheckBox_gddb" Margin="50,0,43,0" Content="耕地等别数据提取"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox Name="CheckBox_cjdcq" Margin="50,0" Content="村级调查区"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left">
<CheckBox x:Name="CheckBox_xzq" Margin="50,0" Content="行政区"/>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</dxlc:LayoutItem>
<dxlc:LayoutItem IsRequired="True" Label="调入前数据" LabelPosition="Top">
<dxlc:LayoutGroup Orientation="Vertical" >
<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:LayoutGroup>
</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:LayoutControl>
</StackPanel>
<StackPanel Orientation="Horizontal" Grid.Row="1">
<TextBlock Text="注:根据地类图斑更新层数据,提取发生变化的行政区更新层、更新过程层、村级调查区更新层、更新过程层数据" Margin="15,0" TextWrapping="Wrap" Width="680" Foreground="Red" ></TextBlock>
</StackPanel>
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,15" VerticalAlignment="Center">
<kuiBtn:KImgButton Name="btnOK" Content="确 定" Width="75" Height="30" Margin="10,0" Click="btnOK_Click"/>
<kuiBtn:KImgButton Name="btnCancel" Content="取 消" Width="75" Height="30" Margin="10,0" Click="btnCancel_Click"/>
</StackPanel>
</Grid>
</windows:BaseWindow>