Double click to play a song in the library

This commit is contained in:
watsonb8
2019-05-26 11:33:07 -05:00
parent 64c2285817
commit 9354c0b27b
2 changed files with 11 additions and 17 deletions

View File

@ -13,15 +13,15 @@ namespace Aurora.Frontend.Views.MainView
public class MainViewModel : BaseViewModel
{
private ObservableCollection<NavigationItem> _pages;
public ObservableCollection<NavigationItem> Pages
public ObservableCollection<NavigationItem> Pages
{
get { return _pages; }
set
{
if(value != _pages)
if (value != _pages)
{
_pages = value;
OnPropertyChanged("Pages");
OnPropertyChanged("Pages");
}
}
@ -30,11 +30,12 @@ namespace Aurora.Frontend.Views.MainView
{
_pages = new ObservableCollection<NavigationItem>(new[]
{
new NavigationItem { Id = 4, Title = "Party", Group="Social", TargetType = typeof(ArtistsView)},
new NavigationItem { Id = 5, Title = "Profile", Group="Social", TargetType = typeof(ArtistsView)},
new NavigationItem { Id = 0, Title = "Songs", Group="Library", TargetType = typeof(SongsView) },
new NavigationItem { Id = 1, Title = "Artists", Group="Library", TargetType = typeof(ArtistsView)},
new NavigationItem { Id = 2, Title = "Albums", Group="Library", TargetType = typeof(AlbumsView)},
new NavigationItem { Id = 3, Title = "Stations", Group="Library", TargetType = typeof(StationsView)},
});
}