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.
51 lines
3.5 KiB
51 lines
3.5 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.DataLoad.View.FrmLoadProjectData" |
|
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="600" Height="220"> |
|
<Grid Background="White" > |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="55"/> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="80"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="2*"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<dxlc:LayoutControl Orientation="Vertical" Width="600" Grid.Row="0" Grid.ColumnSpan="3"> |
|
<dxlc:LayoutGroup Orientation="Horizontal"> |
|
<Label Content="数据覆盖目录:" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="14"/> |
|
<dxe:TextEdit x:Name="btnPrjDir" Height="30" IsReadOnly="True" Margin="5,0,0,0"/> |
|
<kuiBtn:KImgButton x:Name="btnSelectedPrjDir" Content="选 择" Width="80" Height="30" CornerRadius="3" Click="BtnSelectedOtherData_Click"/> |
|
</dxlc:LayoutGroup> |
|
</dxlc:LayoutControl> |
|
<dxlc:LayoutItem Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" HorizontalContentAlignment="Center"> |
|
<dxe:CheckEdit x:Name="cbOverlayBGData" Content="变更数据"/> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" HorizontalContentAlignment="Center"> |
|
<dxe:CheckEdit x:Name="cbOverlayZLData" Content="增量数据" IsChecked="True"/> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="1" Grid.Column="2" VerticalAlignment="Center" HorizontalContentAlignment="Center"> |
|
<dxe:CheckEdit x:Name="cbOverlayNMData" Content="年末数据"/> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="2" Grid.ColumnSpan="3" HorizontalAlignment="Stretch" VerticalAlignment="Center"> |
|
<TextBlock Text=" 注:可以将其他工程目录下的所有数据加载到软件中,进行数据排查" TextWrapping="Wrap" Foreground="Red" ></TextBlock> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Grid.Row="3" Grid.ColumnSpan="3" VerticalAlignment="Center" HorizontalContentAlignment="Center"> |
|
<StackPanel Orientation="Horizontal"> |
|
<kuiBtn:KImgButton x:Name="btnDele" Content="清 除" Width="80" Height="30" CornerRadius="3" Margin="10,10" Foreground="White" Click="BtnDele_Click" /> |
|
<kuiBtn:KImgButton x:Name="btnLoad" Content="加 载" Width="80" Height="30" CornerRadius="3" Margin="10,10" Foreground="White" Click="BtnLoad_Click" /> |
|
<kuiBtn:KImgButton x:Name="btnClose" Content="取 消" Width="80" Height="30" CornerRadius="3" Margin="10,10" Foreground="White" Click="BtnClose_Click" /> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|