16 lines
974 B
XML
16 lines
974 B
XML
<Window x:Class="Torch.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:Torch.Launcher"
|
|
mc:Ignorable="d"
|
|
Title="Piston Launcher" ResizeMode="NoResize" Height="220" Width="400">
|
|
<StackPanel Orientation="Vertical">
|
|
<Label FontSize="50" Content="Piston Launcher" HorizontalAlignment="Center"/>
|
|
<Button x:Name="LaunchBtn" FontSize="15" Height="25" Content="Launch" Margin="5,5,5,5" Click="LaunchBtn_Click"/>
|
|
<Button x:Name="UpdateBtn" FontSize="15" Height="25" Content="Install/Update" Margin="5,5,5,5" Click="UpdateBtn_Click"/>
|
|
<Label x:Name="InfoLabel" Margin="5,5,5,5" HorizontalAlignment="Center"/>
|
|
</StackPanel>
|
|
</Window>
|