mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 22:01:18 +00:00
24 lines
1 KiB
XML
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>
|