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.
52 lines
3.4 KiB
52 lines
3.4 KiB
<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.DataLoad.View.FrmDataExport" |
|
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" Title="图层数据导出" Width="500" Height="230" ResizeMode="NoResize"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="70"/> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="20"/> |
|
</Grid.RowDefinitions> |
|
<dxlc:LayoutGroup Orientation="Horizontal" Grid.Row="0" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<dxlc:LayoutItem IsRequired="True" Label="输出数据路径:" Width="400"> |
|
<dxe:TextEdit x:Name="cobTextEdit" Height="30" IsReadOnly="True" Margin="3,0,0,0"> |
|
</dxe:TextEdit> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem> |
|
<kuiBtn:KImgButton Content="选 择" Width="80" Height="30" CornerRadius="3" Foreground="White" Click="BtnGDBBaseData_Click" /> |
|
</dxlc:LayoutItem> |
|
</dxlc:LayoutGroup> |
|
<dxlc:LayoutGroup Orientation="Horizontal" Grid.Row="1" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<dxlc:LayoutItem IsRequired="True" Label="输出类型:" Width="480"> |
|
<StackPanel Orientation="Horizontal"> |
|
<RadioButton x:Name="rdSha" Content="Shape" GroupName="SJLY" IsChecked="True" Margin="30,0"/> |
|
<RadioButton x:Name="rdGDB" Content="GDB" GroupName="SJLY" IsEnabled="False" Margin="30,0"/> |
|
<RadioButton x:Name="rdMDB" Content="MDB" GroupName="SJLY" IsEnabled="False" Margin="10,0"/> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
</dxlc:LayoutGroup> |
|
<dxlc:LayoutItem Grid.Row="2" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<StackPanel Orientation="Horizontal"> |
|
<kuiBtn:KImgButton Content="导 出" Width="80" Height="30" CornerRadius="3" Margin="20,0" Foreground="White" Click="BtnLoad_Click" /> |
|
<kuiBtn:KImgButton Content="取 消" Width="80" Height="30" CornerRadius="3" Margin="20,0" Foreground="White" Click="BtnClose_Click" /> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="4" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center"> |
|
<StackPanel Orientation="Horizontal"> |
|
<TextBlock Text="注:图层数据导出,格式(Shape,GDB,MDB)" TextWrapping="Wrap" Width="580" Foreground="Red" ></TextBlock> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|