PlombirLauncher/Launcher-UI/Views/SettingsWindow.axaml
Max Nullov d5c8d36d61 Config Manager update
Auto fix for broken and outdated configs and base for work in future
2025-02-25 22:43:25 +03:00

66 lines
1.8 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"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Row="0" Grid.ColumnSpan="2">
<TextBlock
HorizontalAlignment="Center"
Text="All tweaks can be found in TOML near executable."
FontFamily="{StaticResource QuicksandFont}"
/>
<TextBlock
HorizontalAlignment="Center"
x:Name="tweaksVersion"
FontFamily="{StaticResource QuicksandFont}"
/>
</StackPanel>
<StackPanel Grid.Row="1" Grid.Column="0">
<Button
Margin="5"
Content="Select minecraft folder"
Click="OnFilePickerClick"
/>
</StackPanel>
<StackPanel Grid.Row="2" Grid.Column="1">
<Image Source="/Assets/Sprites/toml-paper.png" Stretch="Uniform" />
</StackPanel>
</Grid>
</Window>