mirror of
https://gitlab.com/nullmax17/PlombirLauncher.git
synced 2025-03-14 18:01:12 +03:00
28 lines
965 B
XML
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> |