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.
41 lines
2.3 KiB
41 lines
2.3 KiB
<ad:DocumentContent x:Class="SiaSun.LMS.WPFClient.FLOW_ACTION.LOG_ACTION"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:uc="clr-namespace:SiaSun.LMS.WPFClient.UC"
|
|
xmlns:ad="clr-namespace:AvalonDock;assembly=AvalonDock"
|
|
Title="PLAN_ACTION" Height="366" Width="510" Loaded="DocumentContent_Loaded">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"></RowDefinition>
|
|
<RowDefinition Height="5"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<uc:ucQuickQuery x:Name="ucQueryPlan" Margin="1,1,1,3" Grid.Row="0" BorderBrush="Black"></uc:ucQuickQuery>
|
|
|
|
|
|
|
|
<Grid Grid.Row="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="65*"></ColumnDefinition>
|
|
<ColumnDefinition Width="35*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<GroupBox Grid.Column="0" Header="日志信息" HorizontalAlignment="Stretch" Margin="1,1,0,0" Name="groupBox1" VerticalAlignment="Stretch" >
|
|
|
|
<uc:ucCommonDataGrid HorizontalAlignment="Stretch" Margin="0,0,0,0" x:Name="ucLogGrid" VerticalAlignment="Stretch" />
|
|
|
|
</GroupBox>
|
|
<GroupBox Grid.Column="1" Header="参数信息" HorizontalAlignment="Stretch" Margin="1,1,0,0" Name="groupBox2" VerticalAlignment="Stretch" >
|
|
<Grid >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height ="40" ></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<TextBox Name="txtParameter" Margin="0,0" TextWrapping="Wrap" AcceptsReturn="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Row="1" />
|
|
<Button Content="重新调用" Grid.Row="0" Height="25" HorizontalAlignment="Right" Margin="0,0,20,0" Name="btnInvoke" VerticalAlignment="Center" Width="80" Click="btnInvoke_Click" />
|
|
<TextBlock Grid.Row="0" Height="24" HorizontalAlignment="Right" Margin="-51,8,105,8" Name="lbName" VerticalAlignment="Center" Width="220" TextAlignment="Center" Text="" />
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</Grid>
|
|
</ad:DocumentContent>
|