<Window x:Class="SmartScanner.OperateLog.OperateLogView"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:local="clr-namespace:SmartScanner.OperateLog"
|
mc:Ignorable="d"
|
Title="操作日志" Height="450" Width="800">
|
<DockPanel>
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Margin="5">
|
<Button Content="刷新" Width="80" Margin="5" Click="BtnRefresh_Click"/>
|
<Button Content="打开日志文件夹" Width="120" Margin="5" Click="BtnOpenFolder_Click"/>
|
</StackPanel>
|
|
<TextBox x:Name="txtLogs" DockPanel.Dock="Bottom" Margin="5"
|
IsReadOnly="True" VerticalScrollBarVisibility="Auto"
|
TextWrapping="Wrap" FontSize="12"/>
|
</DockPanel>
|
</Window>
|