-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathMainWindow.xaml
16 lines (16 loc) · 959 Bytes
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="Launcher.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:Launcher"
mc:Ignorable="d"
Title="Launcher" Width="320" WindowStartupLocation="CenterScreen" SizeToContent="Height" ResizeMode="NoResize">
<Grid>
<StackPanel Margin="5">
<TextBlock Margin="0,5,0,0" Text="{Binding Path=Title, Mode=OneWay}" HorizontalAlignment="Center" FontWeight="Bold"></TextBlock>
<Button Height="36" Margin="0,5" Content="Inject" Click="Inject_Click"></Button>
<TextBlock Margin="0,0,0,0" Text="{Binding Path=Status, Mode=OneWay}" HorizontalAlignment="Left"></TextBlock>
</StackPanel>
</Grid>
</Window>