LogInfo.xaml
1.52 KB
<UserControl x:Class="HHECS.WinCommon.Controls.LogInfo"
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:HHECS.WinCommon.Controls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<Style x:Key="TextBlockStyle" TargetType="{x:Type TextBlock}" BasedOn="{StaticResource BaseTextBlockStyle}">
<Setter Property="FontSize" Value="15"></Setter>
<Setter Property="TextWrapping" Value="Wrap"></Setter>
<Setter Property="TextAlignment" Value="Center"></Setter>
</Style>
</UserControl.Resources>
<ListBox x:Name="list_Log" >
<ListBox.ItemTemplate>
<DataTemplate>
<WrapPanel Background="{Binding Level}" Orientation="Horizontal" Margin="0.5" >
<TextBlock Text="{Binding Dt,StringFormat='{}{0:yyyy/MM/dd HH:mm:ss}'}" Style="{StaticResource TextBlockStyle}" ></TextBlock>
<TextBlock Style="{StaticResource TextBlockStyle}" >:</TextBlock>
<TextBlock Text="{Binding Content}" Style="{StaticResource TextBlockStyle}" ></TextBlock>
</WrapPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</UserControl>