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.8 KiB
54 lines
3.8 KiB
<window:BaseWindow |
|
x:Class="Kingo.Plugin.DLTB_IDG.View.CreateQualityCheckView" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:dxlc="http://schemas.devexpress.com/winfx/2008/xaml/layoutcontrol" |
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
xmlns:window="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
xmlns:btn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" d:DesignHeight="320" MaxHeight="320" d:DesignWidth="700" MaxWidth="700"> |
|
<Grid Background="White"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="230*"/> |
|
<ColumnDefinition Width="230*"/> |
|
<ColumnDefinition Width="230*"/> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="320"/> |
|
</Grid.RowDefinitions> |
|
<GroupBox Header="新建质检任务" Grid.Row="0" Margin="8,8,8,0" Grid.ColumnSpan="3" VerticalAlignment="Top"> |
|
<dxlc:LayoutGroup Orientation="Vertical"> |
|
<dxlc:LayoutItem Label="待检成果路径:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left"> |
|
<dxe:ButtonEdit x:Name="btnResult" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True"> |
|
<dxe:ButtonInfo x:Name="btnResultPath" Content="选择" Click="BtnResultPath_Click" /> |
|
</dxe:ButtonEdit> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Label="基础数据路径:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left"> |
|
<dxe:ButtonEdit x:Name="btnJCK" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True"> |
|
<dxe:ButtonInfo x:Name="btnJCKPath" Content="选择" Click="BtnXZQPath_Click" /> |
|
</dxe:ButtonEdit> |
|
</dxlc:LayoutItem> |
|
<!--<dxlc:LayoutItem Label="原格式数据路径:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left"> |
|
<dxe:ButtonEdit x:Name="txtOriginalData" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True"> |
|
<dxe:ButtonInfo x:Name="txtOriginalDataPath" Content="选择" Click="BtnTxtOriginalDataPath_Click" /> |
|
</dxe:ButtonEdit> |
|
</dxlc:LayoutItem>--> |
|
<dxlc:LayoutItem Label="坡度数据路径:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left"> |
|
<dxe:ButtonEdit x:Name="btnPDT" AllowDefaultButton="False" Margin="0,0,19,0" IsReadOnly="True"> |
|
<dxe:ButtonInfo x:Name="btnPDTPath" Content="选择" Click="BtnPDQPath_Click" /> |
|
</dxe:ButtonEdit> |
|
</dxlc:LayoutItem> |
|
<dxlc:LayoutItem Label="行政区划代码:" LabelPosition="Left" Height="27" Margin="5" LabelHorizontalAlignment="Left"> |
|
<dxe:TextEdit x:Name="txtXZQCode" Margin="0,0,19,0" IsReadOnly="True"> |
|
</dxe:TextEdit> |
|
</dxlc:LayoutItem> |
|
<StackPanel Grid.ColumnSpan="3" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,10"> |
|
<btn:KImgButton Height="30" x:Name="btnOK" VerticalContentAlignment="Center" Margin="20,0" Content="执 行" Click="BtnOK_Click" /> |
|
<btn:KImgButton Height="30" x:Name="btnCancel" VerticalContentAlignment="Center" Margin="20,0" Content="取 消" Click="BtnCancel_Click" /> |
|
</StackPanel> |
|
</dxlc:LayoutGroup> |
|
</GroupBox> |
|
</Grid> |
|
</window:BaseWindow>
|
|
|