diff --git a/Launcher-UI/Views/MainWindow.axaml b/Launcher-UI/Views/MainWindow.axaml
index 20ea829..c714306 100644
--- a/Launcher-UI/Views/MainWindow.axaml
+++ b/Launcher-UI/Views/MainWindow.axaml
@@ -6,7 +6,7 @@
mc:Ignorable="d" d:DesignWidth="750" d:DesignHeight="500"
x:Class="LauncherGUI.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
- Icon="/Assets/icon.png"
+ Icon="/Assets/Sprites/icon.png"
Title="PlombirLauncher"
RequestedThemeVariant="Dark"
Width="750" Height="500"
@@ -14,14 +14,8 @@
MaxWidth="750" MaxHeight="500">
-
+
-
-
-
-
-
@@ -33,7 +27,7 @@
-
+
@@ -43,13 +37,15 @@
Padding="10" Margin="3"
CornerRadius="10">
-
+
+
-
+
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
diff --git a/Launcher-UI/Views/MainWindow.axaml.cs b/Launcher-UI/Views/MainWindow.axaml.cs
index 3e22395..32195e6 100644
--- a/Launcher-UI/Views/MainWindow.axaml.cs
+++ b/Launcher-UI/Views/MainWindow.axaml.cs
@@ -1,11 +1,8 @@
using System;
-using System.Collections.Generic;
-using System.Linq;
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.VisualTree;
using Plombir;
-using CmlLib.Core.VersionMetadata;
using LauncherGUI.ViewModels;
using System.Diagnostics;
using System.Runtime.InteropServices;
@@ -86,4 +83,9 @@ public partial class MainWindow : Window
}
}
+ private void OnAccountSettingsPressed(object sender, RoutedEventArgs e)
+ {
+ //todo: account managment window
+ }
+
}