Trying out naudio. Doesn’t support cross platform

This commit is contained in:
watsonb8
2019-05-22 10:31:27 -04:00
parent a4276a0d5d
commit 44d0e24cd9
4 changed files with 351 additions and 0 deletions

View File

@ -48,6 +48,15 @@ namespace Aurora.Frontend.Views.Songs
SongsList = LibraryService.Instance.GetLibrary();
}
private void PlayExecute()
{
if (_selectedSong != null)
{
PlayerService.Instance.Play(_selectedSong);
}
}
#endregion Methods
}