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.
47 lines
2.7 KiB
47 lines
2.7 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" x:Class="Kingo.Plugin.BatchDataLoad.View.UcBatchDataLoad" |
|
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:local="clr-namespace:Kingo.Plugin.BatchDataLoad.View" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" WindowStartupLocation="CenterScreen" |
|
Height="500" Width="800" Title="数据加载" > |
|
<Grid Background="White"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition/> |
|
<RowDefinition Height="Auto"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="auto"/> |
|
</Grid.ColumnDefinitions> |
|
|
|
<TextBlock Text="选择数据目录:" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="5,0" /> |
|
<ComboBox Grid.Column="1" Height="30" x:Name="cobDataBase" VerticalContentAlignment="Center" SelectionChanged="cobDataBase_SelectionChanged" /> |
|
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center" Height="30" Margin="10,0"> |
|
<btn:KImgButton Content="选 择" Margin="5,0" Height="30" Click="SelectFile_Click"/> |
|
</StackPanel> |
|
|
|
<local:UcTreeListViewControl Grid.ColumnSpan="4" HorizontalAlignment="Stretch" Grid.Row="1" VerticalAlignment="Stretch"/> |
|
|
|
|
|
<StackPanel Grid.ColumnSpan="3" Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center" Height="30" Margin="10"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="200"/> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="450"/> |
|
</Grid.ColumnDefinitions> |
|
<CheckBox Grid.Column="0" x:Name="chkIsCreateZYQ" Content="是否自动生成作业区" Margin="20,0" VerticalAlignment="Center" HorizontalAlignment="Left"/> |
|
<StackPanel Grid.Column="2" Orientation="Horizontal" VerticalAlignment="Center"> |
|
<btn:KImgButton Content="确 定" Margin="5,0" Height="30" Click="BtnOK_Click"/> |
|
<btn:KImgButton Content="取 消" Margin="5,0" Height="30" Click="BtnCancel_Click"/> |
|
</StackPanel> |
|
</Grid> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|