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.
85 lines
5.2 KiB
85 lines
5.2 KiB
<UserControl |
|
x:Class="Kingo.Plugin.DLTB_IDG.View.UCDataAnalysis" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
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:kuiBtn="clr-namespace:KUI.Button;assembly=KUI" |
|
mc:Ignorable="d" d:DesignHeight="550" MaxHeight="550" d:DesignWidth="1200" MaxWidth="1600"> |
|
<Grid Background="White" Height="380" MaxWidth="1600" VerticalAlignment="Top"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="40"/> |
|
<RowDefinition Height="450"/> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="170"/> |
|
<ColumnDefinition Width="200"/> |
|
<ColumnDefinition Width="200"/> |
|
<ColumnDefinition/> |
|
</Grid.ColumnDefinitions> |
|
<StackPanel Height="30" Orientation="Horizontal" Grid.Row="0" Grid.ColumnSpan="4"> |
|
<!--<dxlc:LayoutGroup Orientation="Horizontal"> |
|
<dxlc:LayoutItem Label="选择数据:" LabelPosition="Left" Margin="10,0,0,0"> |
|
<dxe:ComboBoxEdit x:Name="externalDataPath" IsTextEditable="False" NullText="下发定性图斑数据" IsEnabled="True" Height="30" Width="420"> |
|
</dxe:ComboBoxEdit> |
|
</dxlc:LayoutItem> |
|
<kuiBtn:KImgButton Content="选 择" Width="80" Height="30" CornerRadius="3" Name="btnExternalData" Foreground="White" Click="btnExternalData_Click" /> |
|
</dxlc:LayoutGroup>--> |
|
<dxe:ComboBoxEdit x:Name="RelatedCombox" Height="30" Width="400" VerticalAlignment="Center" IsTextEditable="False"> |
|
<dxe:ComboBoxEdit.StyleSettings> |
|
<dxe:CheckedComboBoxStyleSettings /> |
|
</dxe:ComboBoxEdit.StyleSettings> |
|
</dxe:ComboBoxEdit> |
|
<kuiBtn:KImgButton Content="开始分析" Margin="20,0" Width="80" Height="30" CornerRadius="3" Name="btnAnalysis" Foreground="White" Click="btnAnalysis_Click" /> |
|
</StackPanel> |
|
<StackPanel Height="30" Orientation="Horizontal" Grid.Row="1" Grid.ColumnSpan="4"> |
|
|
|
</StackPanel> |
|
<Grid Background="White" Grid.Row="2" Grid.ColumnSpan="4" MaxHeight="550" MaxWidth="1600"> |
|
<Grid MaxHeight="550" MaxWidth="1600"> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="300" MaxHeight="300" /> |
|
<RowDefinition Height="300" MaxHeight="300" /> |
|
</Grid.RowDefinitions> |
|
<Grid x:Name="gridLayerAttribute" Grid.Column="1"> |
|
<dxg:GridControl x:Name="dgTableMapping"> |
|
<dxg:GridControl.View> |
|
<dxg:TableView Name="tvAttr" |
|
RowDoubleClick="TvAttr_RowDoubleClick" |
|
IsColumnMenuEnabled="False" |
|
RowMinHeight="30" |
|
AllowColumnFiltering="True" |
|
AllowSorting="True" |
|
AllowEditing="False" |
|
HorizontalContentAlignment="Left" |
|
VerticalScrollbarVisibility="Auto" |
|
ShowTotalSummary="False" |
|
ShowFilterPanelMode="Never" |
|
AllowPerPixelScrolling="False" |
|
ShowFixRowButton="Never" |
|
ShowFixedTotalSummary="False" |
|
ShowSearchPanelMode="Never" |
|
AllowGrouping="True" |
|
MultiSelectMode="Row" |
|
AllowBestFit="False" |
|
ShowGroupPanel="False" |
|
ShowAutoFilterRow="True" |
|
AllowFilterEditor="True" |
|
/> |
|
</dxg:GridControl.View> |
|
<dxg:GridControl.Columns> |
|
<dxg:GridColumn Header="序号" FieldName="XH" Width="40" ReadOnly="True" /> |
|
<dxg:GridColumn Header="错误描述" FieldName="ErrorDescription" Width="4*" ReadOnly="True" /> |
|
</dxg:GridControl.Columns> |
|
</dxg:GridControl> |
|
</Grid> |
|
</Grid> |
|
</Grid> |
|
</Grid> |
|
</UserControl>
|
|
|