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.
54 lines
3.7 KiB
54 lines
3.7 KiB
<windows:BaseWindow |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.BGResultManager.View.FrmNCMKHZExport" |
|
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:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" Title="年初末库报表导出" ResizeMode="NoResize" |
|
Height="240" Width="450"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="*"/> |
|
<RowDefinition Height="0.5*"/> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition Height="50"/> |
|
<RowDefinition Height="30"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<StackPanel Grid.Row="0" Grid.ColumnSpan="2" x:Name="SelectLayer" Margin="20,10,20,10" VerticalAlignment="Center" Orientation="Horizontal"> |
|
<Label VerticalAlignment="Center" HorizontalAlignment="Center">数据来源图层:</Label> |
|
<TextBox x:Name="PathNCM" Width="210" IsReadOnly="True"></TextBox> |
|
<kuiBtn:KImgButton x:Name="SelNMKPath" Content="选 择" Width="80" Height="30" CornerRadius="3" Margin="5,0" Foreground="White" Click="btnSelectedBaseData_Click" /> |
|
</StackPanel> |
|
<WrapPanel Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Center" Height="25"> |
|
<RadioButton x:Name="rbNOWNMK" Content="当前年初库报表" GroupName="1" IsChecked="True" Click="RbECTNMK_Click"/> |
|
</WrapPanel> |
|
<WrapPanel Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Center" Height="25"> |
|
<RadioButton x:Name="rbECTNMK" Content="其他年末库报表" GroupName="1" Click="RbECTNMK_Click"/> |
|
</WrapPanel> |
|
<Grid Grid.Row="2" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Center" x:Name="KZMJView"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
<ColumnDefinition/> |
|
</Grid.ColumnDefinitions> |
|
<Label VerticalAlignment="Center" Grid.Column="0">陆地面积(公顷):</Label> |
|
<TextBox x:Name="LDMJTex" VerticalAlignment="Center" HorizontalAlignment="Center" Text="0" Grid.Column="1" Width="90" Height="25"/> |
|
<Label Grid.Column="2" VerticalAlignment="Center" Margin="10,0">海岛面积(公顷):</Label> |
|
<TextBox x:Name="HDMJTex" VerticalAlignment="Center" HorizontalAlignment="Center" Text="0" Grid.Column="3" Width="90" Height="25"/> |
|
</Grid> |
|
<Grid Grid.Row="3" Grid.ColumnSpan="2" VerticalAlignment="Top" HorizontalAlignment="Center" Margin="10"> |
|
<kuiBtn:KImgButton x:Name="btnOK" Content="执 行" Width="70" Height="27" CornerRadius="3" Margin="0,0,120,0" Foreground="White" Click="BtnTBTQ_Click" /> |
|
<kuiBtn:KImgButton x:Name="btnCanel" Content="关 闭" Width="70" Height="27" CornerRadius="3" Margin="120,0,0,0" Foreground="White" Click="BtnCanel_Click" /> |
|
</Grid> |
|
<StackPanel Grid.Row="4" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Left"> |
|
<Label Margin="20,0" Foreground="Red" Width="300">注:数据来源图层仅可选择GDB、MDB数据源。</Label> |
|
</StackPanel> |
|
</Grid> |
|
</windows:BaseWindow>
|
|
|