blob: df1f0da25c5ba2aad627ea355a8c257d144cc1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<Window x:Class="Tango.Logging.ConsoleWindow"
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:Tango.Logging"
mc:Ignorable="d"
Height="500" Width="800" Background="Black" FontSize="11" Topmost="True" Foreground="Gainsboro" Title="Console Emulator" RenderOptions.EdgeMode="Aliased">
<Grid>
<RichTextBox x:Name="txtLog" Background="Black" BorderThickness="0" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Visible"></RichTextBox>
</Grid>
</Window>
|