巨石化纤
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.

22 lines
1.0 KiB

<ad:DocumentContent x:Class="SSWMS.Client.RECORD_INTERFACE"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
xmlns:uc="clr-namespace:SSWMS.Client.UC">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<GroupBox Grid.Row="0" Header="任务历史">
<uc:ucQueryDataGrid x:Name="ucRecord"/>
</GroupBox>
<WrapPanel Grid.Row="1" Style="{StaticResource CommonWrapPanel}">
<StackPanel Style="{StaticResource CommonStackPanel}">
<Button Content="调用接口" Style="{StaticResource CommonButton}" Click="bInterface_Click"/>
<Button Content="异常完成" Style="{StaticResource CommonButton}" Click="bComplete_Click"/>
<Button Content="重 置" Style="{StaticResource CommonButton}" Click="bRefresh_Click"/>
</StackPanel>
</WrapPanel>
</Grid>
</ad:DocumentContent>