<Window xmlns="https://github.com/avaloniaui"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:vm="using:LauncherGUI.ViewModels"
        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"
        x:DataType="vm:VersionSelectorWindowViewModel"
        Icon="/Assets/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>