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.
|
|
|
|
<windows:BaseWindow
|
|
|
|
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils"
|
|
|
|
|
x:Class="Kingo.Plugin.DataDictionary.Views.FrmDicManageImport"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
Title="导入数据字典" Height="150" Width="400" ResizeMode="NoResize">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="50"></RowDefinition>
|
|
|
|
|
<RowDefinition Height="25"></RowDefinition>
|
|
|
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Horizontal">
|
|
|
|
|
<TextBox Name="txtPath" HorizontalAlignment="Left" Height="23" VerticalAlignment="Top" Width="250" IsReadOnly="True"/>
|
|
|
|
|
<Button Name="btnBrowse" Width="70" Height="23" Content="浏 览" Margin="10,0,0,0" Click="btnBrowse_Click_1"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal" VerticalAlignment="Top">
|
|
|
|
|
<TextBlock Text="注:将别人的字典导入到该工程中" TextWrapping="Wrap" Margin="32,0" Width="400" Foreground="Red" ></TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Horizontal">
|
|
|
|
|
<Button Name="btnImport" Width="70" Height="23" Content="导 入" Margin="10,0,0,0" Click="btnImport_Click_1"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</windows:BaseWindow >
|