Files
Torch/Piston.Launcher/SpaceDirPrompt.xaml
2016-09-24 13:08:36 -07:00

15 lines
819 B
XML

<Window x:Class="Piston.Launcher.SpaceDirPrompt"
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:Piston.Launcher"
mc:Ignorable="d"
Title="Select SE Directory" Height="120" Width="500">
<StackPanel>
<Label Content="SE not found in the default location. Please input the path of your game's Bin64 directory." HorizontalAlignment="Center"/>
<TextBox x:Name="PathBox" Margin="5,5,5,5"/>
<Button x:Name="OkButton" Content="OK" Margin="5,5,5,5" Click="OkButton_Click"></Button>
</StackPanel>
</Window>