|
|
|
|
<windows:BaseWindow
|
|
|
|
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
x:Class="Kingo.Plugin.DataLoad.View.FrmSJTQ"
|
|
|
|
|
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:kuiBtn="clr-namespace:KUI.Button;assembly=KUI"
|
|
|
|
|
mc:Ignorable="d" Title="初始化变更范围" ResizeMode="NoResize"
|
|
|
|
|
Height="260" Width="430" >
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="35"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel Grid.Row="0" x:Name="SelectLayer" Margin="20,10,20,10" VerticalAlignment="Center" Orientation="Horizontal">
|
|
|
|
|
<Label VerticalAlignment="Center" HorizontalAlignment="Center">数据来源图层:</Label>
|
|
|
|
|
<ComboBox x:Name="SeleComboxLayer" Width="270" Height="30" IsReadOnly="True">
|
|
|
|
|
<ComboBoxItem>地类图斑</ComboBoxItem>
|
|
|
|
|
</ComboBox>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<WrapPanel Grid.Row="1" Margin="10">
|
|
|
|
|
<RadioButton x:Name="rbXZ" Content="按照(乡镇)行政区范围提取" Margin="10,0" VerticalAlignment="Center" HorizontalAlignment="Center" GroupName="1" Checked="RadioButton_Checked">
|
|
|
|
|
</RadioButton>
|
|
|
|
|
<StackPanel x:Name="spCbx" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
|
|
|
<dxe:ComboBoxEdit x:Name="ComboxSelXZQ" Height="30" Width="170" VerticalAlignment="Center" IsTextEditable="False">
|
|
|
|
|
<dxe:ComboBoxEdit.StyleSettings>
|
|
|
|
|
<dxe:CheckedComboBoxStyleSettings />
|
|
|
|
|
</dxe:ComboBoxEdit.StyleSettings>
|
|
|
|
|
</dxe:ComboBoxEdit>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<RadioButton Grid.Row="2" x:Name="rbALL" Margin="20,10" Content="提取全部基础地类图斑数据" GroupName="1" Checked="RadioButton_Checked"/>
|
|
|
|
|
<StackPanel Grid.Row="3" Orientation="Horizontal">
|
|
|
|
|
<TextBlock Margin="20,0" Text="注:选择地类图斑来作为提取图层,可根据条件来提取部分或者全部的地类图斑数据。" TextWrapping="Wrap" Width="390" Foreground="Red" ></TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Grid Grid.Row="4" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="10">
|
|
|
|
|
<kuiBtn:KImgButton x:Name="btnOK" Content="提取图斑" Width="70" Height="27" CornerRadius="3" Margin="0,0,90,0" Foreground="White" Click="BtnTBTQ_Click" />
|
|
|
|
|
<kuiBtn:KImgButton x:Name="btnCanel" Content="关 闭" Width="70" Height="27" CornerRadius="3" Margin="90,0,0,0" Foreground="White" Click="BtnCanel_Click" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<StackPanel VerticalAlignment="Top" HorizontalAlignment="Center" Orientation="Horizontal">
|
|
|
|
|
<Label Name="lblResult" Foreground="Red"></Label>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</windows:BaseWindow>
|