-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainWindow.xaml
16 lines (16 loc) · 2.28 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="BedrockLauncher.Installer.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:BedrockLauncher.Installer"
mc:Ignorable="d"
Title="{DynamicResource Installer_Title}" Height="450" Width="800" WindowStyle="ThreeDBorderWindow" Foreground="White" Background="#FF212121" ResizeMode="CanMinimize" MouseDown="Window_MouseDown" Icon="icon.ico" Initialized="Window_Initialized">
<Grid Margin="0">
<Frame x:Name="MainFrame" Background="#FF1B1B1B" BorderBrush="Gray" BorderThickness="0,0,0,1" Margin="0,0,0,50" NavigationUIVisibility="Hidden" Source="/BedrockLauncher.Installer;component/Pages/LanguageSelectPage.xaml"></Frame>
<Button x:Name="CancelBtn" Style="{DynamicResource DialogButton}" Foreground="{DynamicResource NormalText}" FontFamily="Arial" FontSize="13" FontWeight="Bold" Click="CancelBtn_Click" Content="{DynamicResource Installer_Cancel_Text}" Margin="0,0,10,10" Width="100" Height="30" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
<Button x:Name="NextBtn" Style="{DynamicResource DialogButton}" Foreground="{DynamicResource NormalText}" FontFamily="Arial" FontSize="13" FontWeight="Bold" Click="NextBtn_Click" Content="{DynamicResource Installer_Next_Text}" Margin="0,0,130,10" Width="100" Height="30" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
<Button x:Name="BackBtn" Style="{DynamicResource DialogButton}" Foreground="{DynamicResource NormalText}" FontFamily="Arial" FontSize="13" FontWeight="Bold" Click="BackBtn_Click" IsEnabled="False" Content="{DynamicResource Installer_Back_Text}" Margin="0,0,240,10" Width="100" Height="30" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
<Button x:Name="FinishBtn" Style="{DynamicResource DialogButton}" Visibility="Hidden" Foreground="{DynamicResource NormalText}" FontFamily="Arial" FontSize="13" FontWeight="Bold" Content="{DynamicResource Installer_Finish_Text}" Margin="0,0,10,10" Width="100" Height="30" VerticalAlignment="Bottom" HorizontalAlignment="Right"/>
</Grid>
</Window>