|
@@ -4,8 +4,6 @@
|
|
xmlns:vm="using:VeloeMinecraftLauncher.ViewModels"
|
|
xmlns:vm="using:VeloeMinecraftLauncher.ViewModels"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
- xmlns:i="clr-namespace:Avalonia.Xaml.Interactivity;assembly=Avalonia.Xaml.Interactivity"
|
|
|
|
- xmlns:ia="clr-namespace:Avalonia.Xaml.Interactions.Core;assembly=Avalonia.Xaml.Interactions"
|
|
|
|
xmlns:titlebars="using:VeloeMinecraftLauncher.Views.TitleBar"
|
|
xmlns:titlebars="using:VeloeMinecraftLauncher.Views.TitleBar"
|
|
mc:Ignorable="d" d:DesignWidth="350" d:DesignHeight="500"
|
|
mc:Ignorable="d" d:DesignWidth="350" d:DesignHeight="500"
|
|
Width="350" Height="500"
|
|
Width="350" Height="500"
|
|
@@ -47,7 +45,7 @@
|
|
<TabItem Header="Downloader">
|
|
<TabItem Header="Downloader">
|
|
<Grid Margin="10" RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto,*,Auto,Auto,Auto,Auto">
|
|
<Grid Margin="10" RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto,*,Auto,Auto,Auto,Auto">
|
|
<ComboBox
|
|
<ComboBox
|
|
- Items="{Binding FilteredVersions}"
|
|
|
|
|
|
+ ItemsSource="{Binding FilteredVersions}"
|
|
PlaceholderText="Select version"
|
|
PlaceholderText="Select version"
|
|
SelectedItem="{Binding FilteredVersion}"
|
|
SelectedItem="{Binding FilteredVersion}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
@@ -124,7 +122,7 @@
|
|
<TabItem Header="Manager">
|
|
<TabItem Header="Manager">
|
|
<Grid Margin="10" RowDefinitions="Auto,*,Auto">
|
|
<Grid Margin="10" RowDefinitions="Auto,*,Auto">
|
|
<ComboBox
|
|
<ComboBox
|
|
- Items="{Binding DownloadedVersions}"
|
|
|
|
|
|
+ ItemsSource="{Binding DownloadedVersions}"
|
|
PlaceholderText="Select version"
|
|
PlaceholderText="Select version"
|
|
SelectedItem="{Binding DownloadedVersion}"
|
|
SelectedItem="{Binding DownloadedVersion}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
@@ -132,7 +130,7 @@
|
|
Grid.Row="0"/>
|
|
Grid.Row="0"/>
|
|
|
|
|
|
<TreeView
|
|
<TreeView
|
|
- Items="{Binding DownloadedVersionTree}"
|
|
|
|
|
|
+ ItemsSource="{Binding DownloadedVersionTree}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
IsEnabled="{Binding IsControlsEnabled}"
|
|
x:Name="treeView"
|
|
x:Name="treeView"
|
|
Margin="0,10,0,0"
|
|
Margin="0,10,0,0"
|