public DashBoard()
 {
     this.InitializeComponent();
     listPlaylist   = new ObservableCollection <Models.SoundCloudPlaylist>();
     FavoritesTrack = new ObservableCollection <Models.SoundCloudTrack>();
     clientDownload = new DownloadJson();
 }
Example #2
0
 public ChartPage()
 {
     this.InitializeComponent();
     ListTrack      = new ObservableCollection <Models.TopTrack>();
     ListCate       = new ObservableCollection <Models.Category>();
     clientDownload = new DownloadJson();
     this.GetTrack();
     this.UpdateCate();
 }
 public MainPage()
 {
     this.InitializeComponent();
     this.Loaded        += this.PageLoaded;
     ListMenu            = new ObservableCollection <Models.Menu>();
     Player.MediaOpened += this.HandleMediaOpened;
     Player.MediaEnded  += this.HandleMediaEnded;
     Player.BufferingProgressChanged += this.HandleProgressChanged;
     this.SetupMenu();
     clientDownload = new DownloadJson();
     MainFrame.Navigate(typeof(ChartPage));
 }