|
|
|
|
<windows:BaseWindow x:Class="Kingo.Plugin.BuildZLDatabase.View.FrmInheritBSM"
|
|
|
|
|
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:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="200" d:DesignWidth="500" Title="继承标识码" Width="550" Height="200">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid Grid.Column="1" >
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="60" />
|
|
|
|
|
<RowDefinition Height="25" />
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="left" VerticalAlignment="Center">
|
|
|
|
|
<TextBlock Text="请选择上次的增量数据库:" Grid.Column="0" FontSize="14" VerticalAlignment="Center" Margin="10,0,0,0" Width="170" TextAlignment="Right"/>
|
|
|
|
|
<dxe:ButtonEdit x:Name="btnImportDataPath" Height="25" AllowDefaultButton="False" Width="350">
|
|
|
|
|
<dxe:ButtonInfo x:Name="btnSelectedImportDataPath" Content="选择" Click="btnSelectedImportDataPath_Click" />
|
|
|
|
|
</dxe:ButtonEdit>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
|
|
<CheckBox x:Name="ckbJCTBMJ" Content="同步继承增量面积" IsChecked="False" Margin="20,0"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Center">
|
|
|
|
|
<TextBlock Text="注:选择的增量数据库继承更新层继承标识码,地类图斑过程层继承标识码!" FontSize="12" Grid.Column="0" VerticalAlignment="Center" Margin="10,0,0,0" Width="420" TextAlignment="Left"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="3" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
|
|
<kuiBtn:KImgButton x:Name="btnOK" Content="确 定" Width="80" Height="30" CornerRadius="3" Margin="20,0" Foreground="White" Click="btnSure_Click" />
|
|
|
|
|
<kuiBtn:KImgButton x:Name="btnCanel" Content="关 闭" Width="80" Height="30" CornerRadius="3" Margin="20,0" Foreground="White" Click="btnCancel_Click" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</windows:BaseWindow>
|