CSGO-Projects/DamagePrinter/DamagePrinterGUI/MainWindow.xaml
2022-05-24 23:41:18 +02:00

24 lines
1 KiB
XML

<Window x:Class="DamagePrinterGUI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DamagePrinterGUI"
mc:Ignorable="d"
Title="CS:GO Damage Printer" Height="355" Width="247"
ResizeMode="NoResize"
Style="{DynamicResource CustomWindowStyle}">
<Grid Margin="10">
<StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="CS:GO window found: " />
<TextBlock x:Name="lblCsgoWindowFound" Text="No" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Console log found: " />
<TextBlock x:Name="lblConsoleLogFound" Text="No" />
</StackPanel>
<TextBlock />
</StackPanel>
</Grid>
</Window>