|
|
|
|
<windows:BaseWindow
|
|
|
|
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
x:Class="Kingo.Plugin.DataCheck.View.V_Repair.FrmBachRepair"
|
|
|
|
|
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:btn="clr-namespace:KUI.Button;assembly=KUI"
|
|
|
|
|
xmlns:kui="clr-namespace:KUI;assembly=KUI" ResizeMode="NoResize"
|
|
|
|
|
mc:Ignorable="d" Title="批量修复" Width="400" Height="300">
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition Height="60" />
|
|
|
|
|
<RowDefinition Height="80" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="100"/>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="50"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.ColumnSpan="2">
|
|
|
|
|
<Label Content="城镇村灭失面积大于:" Margin="20,0,0,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" />
|
|
|
|
|
<TextBox x:Name="txtMJ" Grid.Column="1" Text="50" VerticalContentAlignment="Center" Height="30" Width="100" TextChanged="TxtMJ_TextChanged" />
|
|
|
|
|
<Label Content="平方米" Margin="10,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<TextBlock x:Name="txtTip" Margin="20,0" Grid.Row="1" Foreground="Red" Grid.ColumnSpan="3" TextWrapping="WrapWithOverflow" Text="注:请逐条核对检查结果,是否属于本年度正常灭失,如属于正常灭失,请标记【例外】处理!否则此功能会将城镇村灭失面积大于50平方米的图斑,提取为变更图斑并标记20X属性,请谨慎操作!" />
|
|
|
|
|
<StackPanel Grid.Column="1" Grid.Row="2" 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>
|
|
|
|
|
</windows:BaseWindow>
|