Files
shgxtzcjhoudaosaomadayinwpf/RIZO_Application.Modules.LogModule/Views/SystemLog.xaml

25 lines
1.1 KiB
Plaintext
Raw Normal View History

<UserControl x:Class="RIZO_Application.Modules.LogModule.Views.SystemLog"
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:local="clr-namespace:RIZO_Application.Modules.LogModule"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True">
<Grid>
<GroupBox Header="系统日志" HorizontalAlignment="Stretch">
<Grid>
<TextBox
x:Name="LogTextBox"
Text="{Binding LogMessage}"
TextWrapping="Wrap"
AcceptsReturn="True"
HorizontalAlignment="Stretch"
VerticalScrollBarVisibility="Auto"
IsReadOnly="True"
/>
</Grid>
</GroupBox>
</Grid>
</UserControl>