Shuffle: Add clear queue and play queue button

This commit is contained in:
2025-06-06 00:46:53 +02:00
parent 0a04e3c6ce
commit 46b96c0c5d
8 changed files with 81 additions and 10 deletions

View File

@ -375,6 +375,16 @@ namespace unison
AddToQueue();
}
public void ClearQueue_Clicked(object sender, RoutedEventArgs e)
{
_mpd.ClearQueue();
}
public void StartQueue_Clicked(object sender, RoutedEventArgs e)
{
_mpd.PlayCommand();
}
public bool GetContinuous()
{
return _continuous;