PlombirLauncher/Launcher-UI/Views/VersionSelectorWindow.axaml
Max Nullov cdd2bcfb69 Project cleanup
Rearranging sprites + removing redundant files
2025-02-25 18:31:43 +03:00

28 lines
965 B
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="400" d:DesignHeight="200"
x:Class="LauncherGUI.Views.VersionSelectorWindow"
Icon="/Assets/Sprites/icon.png"
Title="Select version"
RequestedThemeVariant="Dark"
Width="600" Height="500"
MinWidth="600" MinHeight="500"
MaxWidth="600" MaxHeight="500"
Background="#353535">
<StackPanel>
<ListBox x:Name="versions" Height="499" SelectionChanged="OnSelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</Window>