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.
40 lines
2.8 KiB
40 lines
2.8 KiB
<window:BaseWindow x:Class="Kingo.Plugin.BGResultManager.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" |
|
xmlns:kui="clr-namespace:KUI;assembly=KUI" |
|
xmlns:local="clr-namespace:Kingo.Plugin.BGResultManager.View" |
|
mc:Ignorable="d" Title="城镇村范围变更" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" |
|
Height="260" Width="500"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition Height="30" /> |
|
<RowDefinition Height="60" /> |
|
<RowDefinition Height="80" /> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition /> |
|
<ColumnDefinition Width="50"/> |
|
</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" > |
|
<CheckBox x:Name="ckbXDM" Content="县代码发生变化" Margin="30,8,0,0" IsEnabled="True" IsChecked="False" /> |
|
<CheckBox x:Name="ckbDelMinMJ" Content="忽略面积小于0.01的数据" Margin="30,8,0,0" IsEnabled="True" IsChecked="False" /> |
|
</StackPanel> |
|
<StackPanel Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center"> |
|
<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> |
|
<kui:LoadingControl x:Name="loading" Grid.ColumnSpan="3" Grid.RowSpan="3" Visibility="Collapsed" /> |
|
</Grid> |
|
</window:BaseWindow>
|
|
|