diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/QueueManagement.axaml b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/QueueManagement.axaml
index 00c139e..db3c196 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/QueueManagement.axaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/QueueManagement.axaml
@@ -1,4 +1,4 @@
-
-
+ x:Class="FRESHMusicPlayer.Views.QueueManagement" Closing="OnClosing"
+ Icon="/Assets/icon.ico">
+
-
+
@@ -72,4 +72,4 @@
-
+
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/Settings.axaml b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/Settings.axaml
index b542b75..c6d92d7 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/Settings.axaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/Settings.axaml
@@ -1,4 +1,4 @@
-
+ x:Class="FRESHMusicPlayer.Views.Settings"
+ Icon="/Assets/icon.ico">
-
+
-
+
@@ -78,4 +78,4 @@
-
+
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/TrackInfo.axaml b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/TrackInfo.axaml
index b2f55ed..c22c35a 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/TrackInfo.axaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-Avalonia/Views/TrackInfo.axaml
@@ -1,4 +1,4 @@
-
-
+ x:Class="FRESHMusicPlayer.Views.TrackInfo" Closing="OnClosing"
+ Icon="/Assets/icon.ico">
+
-
+
@@ -58,4 +58,4 @@
-
+
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow.xaml b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow.xaml
index 47d1b7d..b2e9f54 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow.xaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow.xaml
@@ -62,7 +62,7 @@
-
+
@@ -78,8 +78,8 @@
-
-
+
+
@@ -147,7 +147,10 @@
-
+
+
+
+
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow_Logic.xaml.cs b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow_Logic.xaml.cs
index 11952e2..b39722d 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow_Logic.xaml.cs
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/MainWindow_Logic.xaml.cs
@@ -245,9 +245,9 @@ namespace FRESHMusicPlayer
}
if (CurrentPane != Pane.None) await HideAuxilliaryPane(true);
- if (!openleft) DockPanel.SetDock(RightFrame, Dock.Right); else DockPanel.SetDock(RightFrame, Dock.Left);
- RightFrame.Visibility = Visibility.Visible;
- RightFrame.Width = width;
+ if (!openleft) DockPanel.SetDock(RightFrameBorder, Dock.Right); else DockPanel.SetDock(RightFrameBorder, Dock.Left);
+ RightFrameBorder.Visibility = Visibility.Visible;
+ RightFrameBorder.Width = width;
RightFrame.Content = GetPageForPane(pane);
var sb = InterfaceUtils.GetThicknessAnimation(
@@ -257,7 +257,7 @@ namespace FRESHMusicPlayer
new PropertyPath(MarginProperty),
new ExponentialEase { EasingMode = EasingMode.EaseOut, Exponent = 3 });
- sb.Begin(RightFrame);
+ sb.Begin(RightFrameBorder);
CurrentPane = pane;
}
@@ -265,13 +265,13 @@ namespace FRESHMusicPlayer
{
var sb = InterfaceUtils.GetThicknessAnimation(
new Thickness(0),
- DockPanel.GetDock(RightFrame) == Dock.Left ? new Thickness(RightFrame.Width * -1, 0, 0, 0) : new Thickness(0, 0, RightFrame.Width * -1, 0),
+ DockPanel.GetDock(RightFrameBorder) == Dock.Left ? new Thickness(RightFrameBorder.Width * -1, 0, 0, 0) : new Thickness(0, 0, RightFrameBorder.Width * -1, 0),
TimeSpan.FromMilliseconds(120),
new PropertyPath(MarginProperty),
new ExponentialEase { EasingMode = EasingMode.EaseIn, Exponent = 3 });
- if (animate) await sb.BeginStoryboardAsync(RightFrame);
- RightFrame.Visibility = Visibility.Collapsed;
+ if (animate) await sb.BeginStoryboardAsync(RightFrameBorder);
+ RightFrameBorder.Visibility = Visibility.Collapsed;
RightFrame.Content = null;
CurrentPane = Pane.None;
}
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Pages/Library/LibraryPage.xaml b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Pages/Library/LibraryPage.xaml
index cad7645..beec897 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Pages/Library/LibraryPage.xaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Pages/Library/LibraryPage.xaml
@@ -17,13 +17,16 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/DarkTheme.xaml b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/DarkTheme.xaml
index b9ebb8b..d87abe6 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/DarkTheme.xaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/DarkTheme.xaml
@@ -3,10 +3,10 @@
xmlns:local="clr-namespace:FRESHMusicPlayer">
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/Styles.xaml b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/Styles.xaml
index c475e41..7125c45 100644
--- a/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/Styles.xaml
+++ b/FRESHMusicPlayer/FRESHMusicPlayer-WPF/Resources/Styles.xaml
@@ -1,19 +1,22 @@
+