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.
32 lines
1.7 KiB
32 lines
1.7 KiB
<UserControl x:Class="Kingo.Plugin.YJJK.View.UCExecuteExport" |
|
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" |
|
mc:Ignorable="d" Unloaded="UserControl_Unloaded" |
|
d:DesignHeight="450" d:DesignWidth="574"> |
|
<Grid Background="White" > |
|
<ToolBar Visibility="Collapsed"> |
|
<Button Name="bbiSave" Content="保存" Click="bbiSave_Click"/> |
|
<Button Name="bbiClear" Content="清空" Click="bbiClear_Click"/> |
|
</ToolBar> |
|
<Grid> |
|
<TabControl Name="dxTabInformation"> |
|
<TabItem Header="过程日志" Name="DXTabItemProcessLog"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="*" /> |
|
<RowDefinition Height="Auto" /> |
|
<RowDefinition Height="Auto" /> |
|
</Grid.RowDefinitions> |
|
<RichTextBox Name="txtProcessLog" Grid.Row="0" TextChanged="txtProcessLog_TextChanged" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" IsReadOnly="True"> |
|
<FlowDocument LineHeight="1"></FlowDocument> |
|
</RichTextBox> |
|
<Label Content="当前进度:" Grid.Row="1" Background="White"/> |
|
<ProgressBar Name="pgbProcess" Grid.Row="2" Height="20" Value="0"/> |
|
</Grid> |
|
</TabItem> |
|
</TabControl> |
|
</Grid> |
|
</Grid> |
|
</UserControl>
|
|
|