32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:vm="using:ZTools.ViewModels"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="200" d:DesignHeight="450"
|
|
x:Class="ZTools.Views.LogWindow"
|
|
x:DataType="vm:LogViewModel"
|
|
Title="LogWindow">
|
|
<Window.DataContext>
|
|
<vm:LogViewModel />
|
|
</Window.DataContext>
|
|
|
|
<DockPanel>
|
|
<Border Background="Gold"
|
|
BorderBrush="Black"
|
|
BorderThickness="1"
|
|
CornerRadius="0"
|
|
Padding="1">
|
|
<ListBox ItemsSource="{Binding MyLogs}">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<TextBox IsReadOnly="True"
|
|
TextWrapping="Wrap"
|
|
Text="{Binding Message }">
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Border>
|
|
</DockPanel>
|
|
</Window> |