using System; using System.Collections.ObjectModel; using System.ComponentModel; using System.Runtime.CompilerServices; using Aurora.Design.Components.NavigationMenu; using Aurora.Design.Views.Albums; using Aurora.Design.Views.Artists; using Aurora.Design.Views.Songs; using Aurora.Design.Views.Stations; using Aurora.Design.Views.Party; using Aurora.Design.Views.Profile; namespace Aurora.Design.Views.MainView { public class MainViewModel : BaseViewModel { private ObservableCollection _pages; public ObservableCollection Pages { get { return _pages; } set { if (value != _pages) { _pages = value; OnPropertyChanged("Pages"); } } } public MainViewModel() { _pages = new ObservableCollection(new[] { new NavigationItem { Id = 0, Title = "Songs", Group="Library", TargetType = typeof(SongsView), TargetViewModelType = typeof(SongsViewModel) }, new NavigationItem { Id = 1, Title = "Artists", Group="Library", TargetType = typeof(ArtistsView), TargetViewModelType = typeof(ArtistsViewModel)}, new NavigationItem { Id = 2, Title = "Albums", Group="Library", TargetType = typeof(AlbumsView), TargetViewModelType = typeof(AlbumsViewModel)}, new NavigationItem { Id = 3, Title = "Stations", Group="Library", TargetType = typeof(StationsView), TargetViewModelType = typeof(StationsViewModel)}, new NavigationItem { Id = 4, Title = "Party", Group="Social", TargetType = typeof(PartyView), TargetViewModelType = typeof(PartyViewModel)}, new NavigationItem { Id = 5, Title = "Profile", Group="Social", TargetType = typeof(ProfileView), TargetViewModelType = typeof(ProfileViewModel)}, }); } } }