mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Wire up disc changing to UI
This commit is contained in:
@@ -75,6 +75,18 @@ namespace RedBookPlayer.GUI.ViewModels
|
||||
PlayerView?.ViewModel?.ExecuteEject();
|
||||
}
|
||||
|
||||
// Next Disc
|
||||
else if(e.Key == App.Settings.NextDiscKey)
|
||||
{
|
||||
PlayerView?.ViewModel?.ExecuteNextDisc();
|
||||
}
|
||||
|
||||
// Previous Disc
|
||||
else if(e.Key == App.Settings.PreviousDiscKey)
|
||||
{
|
||||
PlayerView?.ViewModel?.ExecutePreviousDisc();
|
||||
}
|
||||
|
||||
// Next Track
|
||||
else if(e.Key == App.Settings.NextTrackKey || e.Key == Key.MediaNextTrack)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user