mirror of
https://gitlab.com/nullmax17/PlombirLauncher.git
synced 2025-03-14 18:01:12 +03:00
70 lines
1.7 KiB
XML
70 lines
1.7 KiB
XML
<Window
|
|
xmlns="https://github.com/avaloniaui"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="500"
|
|
d:DesignHeight="400"
|
|
x:Class="LauncherGUI.Views.SettingsWindow"
|
|
Icon="/Assets/Sprites/icon.png"
|
|
Title="Launcher tweaks"
|
|
RequestedThemeVariant="Dark"
|
|
Width="500"
|
|
Height="400"
|
|
MinWidth="500"
|
|
MinHeight="400"
|
|
MaxWidth="500"
|
|
MaxHeight="400"
|
|
Background="#353535"
|
|
>
|
|
|
|
<Window.Background>
|
|
<ImageBrush Source="/Assets/Sprites/toml-paper.png" Stretch="UniformToFill"/>
|
|
</Window.Background>
|
|
|
|
<StackPanel Margin="5">
|
|
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBlock
|
|
Text="All tweaks can be found in TOML near executable."
|
|
FontFamily="{StaticResource QuicksandFont}"
|
|
/>
|
|
|
|
<TextBlock
|
|
x:Name="tweaksVersion"
|
|
FontFamily="{StaticResource QuicksandFont}"
|
|
/>
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel Margin="20">
|
|
|
|
<StackPanel>
|
|
|
|
<TextBlock
|
|
x:Name="currentDir"
|
|
FontFamily="{StaticResource QuicksandFont}"
|
|
/>
|
|
|
|
<Button
|
|
Margin="5"
|
|
Content="Select minecraft folder"
|
|
Click="OnFilePickerClick"
|
|
HorizontalAlignment="Center"
|
|
/>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
<!-- <StackPanel Grid.Row="2" Grid.Column="1">
|
|
<Image Source="/Assets/Sprites/toml-paper.png" Stretch="Uniform" />
|
|
|
|
|
|
</StackPanel> -->
|
|
|
|
</StackPanel>
|
|
|
|
</Window>
|