46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
using Aurora.Frontend.Components.NavigationMenu;
|
|
using Aurora.Frontend.Views.Albums;
|
|
using Aurora.Frontend.Views.Artists;
|
|
using Aurora.Frontend.Views.Songs;
|
|
using Aurora.Frontend.Views.Stations;
|
|
using Aurora.Frontend.Views.Party;
|
|
|
|
namespace Aurora.Frontend.Views.MainView
|
|
{
|
|
public class MainViewModel : BaseViewModel
|
|
{
|
|
private ObservableCollection<NavigationItem> _pages;
|
|
public ObservableCollection<NavigationItem> Pages
|
|
{
|
|
get { return _pages; }
|
|
set
|
|
{
|
|
if (value != _pages)
|
|
{
|
|
_pages = value;
|
|
OnPropertyChanged("Pages");
|
|
}
|
|
|
|
}
|
|
}
|
|
public MainViewModel()
|
|
{
|
|
_pages = new ObservableCollection<NavigationItem>(new[]
|
|
{
|
|
new NavigationItem { Id = 4, Title = "Party", Group="Social", TargetType = typeof(PartyView)},
|
|
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)},
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
}
|