-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugWindow.xaml
More file actions
41 lines (37 loc) · 1.69 KB
/
DebugWindow.xaml
File metadata and controls
41 lines (37 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Window x:Class="TaskPilot.DebugWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TaskPilot - Debug-Konsole"
Height="400" Width="700"
WindowStartupLocation="CenterOwner"
Icon="/icons/toolicon.ico">
<Grid Background="#F5F5F5">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- Header -->
<Border Grid.Row="0" Background="#2196F3" Padding="15">
<TextBlock Text="Debug-Konsole - Auto-Restart Logs" FontSize="16" FontWeight="Bold" Foreground="White"/>
</Border>
<!-- Log Output -->
<TextBox Grid.Row="1"
x:Name="LogTextBox"
Background="Black"
Foreground="#00FF00"
FontFamily="Consolas"
FontSize="11"
IsReadOnly="True"
VerticalScrollBarVisibility="Auto"
Margin="10">
</TextBox>
<!-- Footer -->
<Border Grid.Row="2" Background="White" Padding="10" BorderBrush="#DDDDDD" BorderThickness="0,1,0,0">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="Löschen" Click="Clear_Click" Padding="15,8" Margin="0,0,10,0" Background="#F44336" Foreground="White" FontWeight="SemiBold"/>
<Button Content="Schließen" Click="Close_Click" Padding="15,8" Background="#9E9E9E" Foreground="White" FontWeight="SemiBold"/>
</StackPanel>
</Border>
</Grid>
</Window>