mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Splitter_UI.Views.LogPane"
|
|
xmlns:conv="clr-namespace:Splitter_UI.Converters"
|
|
xmlns:vm="clr-namespace:Splitter_UI.ViewModels"
|
|
x:DataType="vm:LogPaneViewModel">
|
|
|
|
<UserControl.Resources>
|
|
<conv:ConsoleColorToBrushConverter x:Key="ConsoleColorToBrushConverter"/>
|
|
</UserControl.Resources>
|
|
|
|
<Border Background="#111" Padding="8">
|
|
<ScrollViewer x:Name="Scroller">
|
|
<ItemsControl ItemsSource="{Binding Logs}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate x:DataType="vm:LogEntry">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="[" FontFamily="Consolas" FontSize="12"/>
|
|
<TextBlock Text="{Binding Prefix}"
|
|
FontFamily="Consolas"
|
|
FontSize="12"
|
|
Foreground="{Binding Color, Converter={StaticResource ConsoleColorToBrushConverter}}"/>
|
|
<TextBlock Text="] " FontFamily="Consolas" FontSize="12"/>
|
|
<TextBlock Text="{Binding Message}"
|
|
FontFamily="Consolas"
|
|
FontSize="12"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</UserControl>
|