2025-06-12 14:34:51 +01:00

19 lines
785 B
XML

<!-- Quinn Grafe Schencken rennen -->
<Window x:Class="ModuleManager.LogWindow"
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"
mc:Ignorable="d"
Title="LogWindow" Height="450" Width="800">
<Grid>
<TextBox x:Name="LogBox"
Foreground="Gray"
Background="Black"
FontFamily="Consolas"
IsReadOnly="True"
VerticalScrollBarVisibility="Auto"
TextWrapping="Wrap"
AcceptsReturn="True" />
</Grid>
</Window>