mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
20 lines
698 B
XML
20 lines
698 B
XML
<UserControl
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Splitter_UI.Views.LogPane"
|
|
xmlns:vm="clr-namespace:Splitter_UI.ViewModels"
|
|
x:DataType="vm:LogPaneViewModel">
|
|
|
|
<Border Background="#111" Padding="8">
|
|
<ScrollViewer>
|
|
<ItemsControl ItemsSource="{Binding Logs}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<TextBlock Text="{Binding}" FontFamily="Consolas" FontSize="12"/>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</Border>
|
|
</UserControl>
|