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.
57 lines
4.1 KiB
57 lines
4.1 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.BGResultManager.View.FrmGCDataToSHPGTY" |
|
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.BGResultManager.View" |
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" Title="预变更成果导出" Height="280" Width="500"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition /> |
|
<RowDefinition Height="60"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
</Grid.ColumnDefinitions> |
|
<dxlc:LayoutControl Orientation="Vertical" Grid.ColumnSpan="2"> |
|
<dxlc:LayoutItem IsRequired="True" Label="目标图层:" LabelPosition="Left" LabelHorizontalAlignment="Right"> |
|
<dxe:ComboBoxEdit x:Name="txtTargetLayer" Text="监测图斑" FontWeight="Bold" Grid.Column="1" Height="30" Margin="0,0,10,0" IsReadOnly="True" /> |
|
<!--<dxe:TextEdit x:Name="txtTargetLayer" Text="监测图斑" FontWeight="Bold" Grid.Column="1" Height="30" Margin="0,0,10,0" IsReadOnly="True" />--> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem x:Name="panelSJLY" IsRequired="True" Height="30" Label="导出类型:" VerticalContentAlignment="Center" LabelPosition="Left" LabelHorizontalAlignment="Right" Grid.Row="1"> |
|
<StackPanel Orientation="Horizontal"> |
|
<RadioButton x:Name="rdZZBG" Content="SHP" GroupName="DCLX" IsChecked="True"/> |
|
<RadioButton x:Name="rdGJJC" Content="GTY" GroupName="DCLX" Margin="30,0"/> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem x:Name="panelGLZD" IsRequired="True" Label="过滤字段:" Height="30" Margin="0,10" LabelPosition="Left" LabelHorizontalAlignment="Right"> |
|
<StackPanel Orientation="Horizontal"> |
|
<dxe:ComboBoxEdit x:Name="txtSourceSP" Grid.Column="0" Height="30" Width="90" SelectedIndex="0" Margin="0,0,35,0"> |
|
<dxe:ComboBoxEditItem>是否举证</dxe:ComboBoxEditItem> |
|
</dxe:ComboBoxEdit> |
|
<Label VerticalContentAlignment="Center" FontWeight="Bold">字段值:</Label> |
|
<dxe:ComboBoxEdit x:Name="txtTarget" Grid.Column="1" Height="30" Width="90" SelectedIndex="2" Margin="0,0,10,0"> |
|
<dxe:ComboBoxEditItem>否</dxe:ComboBoxEditItem> |
|
<dxe:ComboBoxEditItem>是</dxe:ComboBoxEditItem> |
|
<dxe:ComboBoxEditItem>所有</dxe:ComboBoxEditItem> |
|
</dxe:ComboBoxEdit> |
|
</StackPanel> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem IsRequired="True" Label="保存路径:" Height="30" LabelPosition="Left" LabelHorizontalAlignment="Right" > |
|
<dxe:ButtonEdit x:Name="btnImportDataPath" Height="30" AllowDefaultButton="False" IsReadOnly="True"> |
|
<dxe:ButtonInfo x:Name="BtnSaveDataPath" Content="选择" Click="BtnSelectedImportDataPath_Click" /> |
|
</dxe:ButtonEdit> |
|
</dxlc:LayoutItem> |
|
</dxlc:LayoutControl> |
|
<Grid Grid.Row="1" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="10" Grid.ColumnSpan="2"> |
|
<kuiBtn:KImgButton x:Name="btnExport" Content="导 出" Width="70" Height="30" CornerRadius="3" Margin="0,0,90,0" Foreground="White" Click="BtnExport_Click" /> |
|
<kuiBtn:KImgButton x:Name="btnCanel" Content="关 闭" Width="70" Height="30" CornerRadius="3" Margin="90,0,0,0" Foreground="White" Click="BtnCanel_Click" /> |
|
</Grid> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|