年度变更建库软件5.0版本
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.

35 lines
2.1 KiB

6 months ago
<UserControl x:Class="Kingo.Plugin.General.View.UCFeedbackTable"
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:btn="clr-namespace:KUI.Button;assembly=KUI"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:local="clr-namespace:Kingo.Plugin.General.View"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Grid Visibility="Visible">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition />
</Grid.RowDefinitions>
<Grid Background="AliceBlue">
<StackPanel Orientation="Horizontal" Margin="20,0">
<btn:KImgButton Content="导入数据" Width="80" Height="30" x:Name="btnImportData" Click="BtnImportData_Click" />
</StackPanel>
</Grid>
<Grid Grid.Row="1">
<dxg:GridControl x:Name="dgData" AutoGenerateColumns="KeepOld" VerticalAlignment="Top" Grid.RowSpan="2" SelectionMode="Row" MouseDoubleClick="DgData_MouseDoubleClick">
<dxg:GridControl.View>
<dxg:TableView Name="dgDataView" ShowCheckBoxSelectorColumn="False" MultiSelectMode="Row" ShowTotalSummary="False" IsTotalSummaryMenuEnabled="False" AllowGroupSummaryCascadeUpdate="False" ShowFixedTotalSummary="False" ShowSearchPanelMode="Never" ShowGroupPanel="False" ShowAutoFilterRow="True" AllowEditing="False" BestFitMode="VisibleRows" ShowCriteriaInAutoFilterRow="False">
</dxg:TableView>
</dxg:GridControl.View>
</dxg:GridControl>
</Grid>
</Grid>
</Grid>
</UserControl>