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.
64 lines
4.1 KiB
64 lines
4.1 KiB
<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.DataLoad.View.FrmDataConversion" |
|
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:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" |
|
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
mc:Ignorable="d" Width="500" Height="280" ResizeMode="NoResize"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="70"/> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="20"/> |
|
</Grid.RowDefinitions> |
|
<Grid Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="100"/> |
|
</Grid.ColumnDefinitions> |
|
<Label Content="选择数据路径:" Grid.Column="0" VerticalAlignment="Center" Margin="5,0"/> |
|
<dxe:TextEdit x:Name="cobYJGDTextEdit" Grid.Column="1" Height="30" IsReadOnly="True"> |
|
</dxe:TextEdit> |
|
<kuiBtn:KImgButton Content="选 择" Width="80" Grid.Column="2" Height="30" CornerRadius="3" Foreground="White" Click="BtnSelectedYJGD_Click" /> |
|
</Grid> |
|
<Grid Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="100"/> |
|
</Grid.ColumnDefinitions> |
|
<Label Content="输出数据路径:" Grid.Column="0" VerticalAlignment="Center" Margin="5,0"/> |
|
<dxe:TextEdit x:Name="cobTextEdit" Grid.Column="1" Height="30" IsReadOnly="True"> |
|
</dxe:TextEdit> |
|
<kuiBtn:KImgButton Content="选 择" Width="80" Grid.Column="2" Height="30" CornerRadius="3" Foreground="White" Click="BtnGDBBaseData_Click" /> |
|
</Grid> |
|
<Grid Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"> |
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center"> |
|
<Label Content="数据类型:" Margin="30,0,0,0"/> |
|
<RadioButton x:Name="rdG" Content="GDB" GroupName="SJLY" Margin="30,0,0,0" VerticalAlignment="Center"/> |
|
<RadioButton x:Name="rdM" Content="MDB" GroupName="SJLY" Margin="60,0,60,0" VerticalAlignment="Center"/> |
|
<RadioButton x:Name="rdS" Content="Shape" GroupName="SJLY" Margin="0,0,0,0" VerticalAlignment="Center"/> |
|
</StackPanel> |
|
</Grid> |
|
<dxlc:LayoutItem Grid.Row="3" Grid.ColumnSpan="2"> |
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<kuiBtn:KImgButton x:Name="btnLoad" Content="导 出" Click="BtnLoad_Click" Width="80" Height="30" CornerRadius="3" Margin="10,10" Foreground="White"/> |
|
<kuiBtn:KImgButton x:Name="btnClose" Content="取 消" Click="BtnClose_Click" Width="80" Height="30" CornerRadius="3" Margin="10,10" Foreground="White"/> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="4" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<StackPanel Orientation="Horizontal"> |
|
<TextBlock Text="注:将所选的GDB或者MDB数据库,转换为勾选的数据类型数据库到指定的输出路径" TextWrapping="Wrap" Width="580" Foreground="Red" ></TextBlock> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|