public PlaylistPage() { InitializeComponent(); _SourceSongGrouped = new ObservableCollection<ArrSongGrouped>(); _Songs = _MediaLibrary.Songs; record2 = new Record2(this, 3); }
public SettingPage() { InitializeComponent(); _SettingManager.FileReader(); SetDefaultRadioButton(); record2 = new Record2(this, 4); Record2.isAvailable = true; }
public MainPage() { InitializeComponent(); st.FileReader(); record2 = new Record2(this, 1); SetProperties(); LoadSettingProperties(); CheckAvailable(); playTimer = new DispatcherTimer(); playTimer.Interval = TimeSpan.FromSeconds(1); //one second playTimer.Tick += new EventHandler(playTimer_Tick); playTimer.Start(); }
public ListSongPage() { InitializeComponent(); _SourceSong = new ObservableCollection<ArrSong>(); _SourceArtist = new ObservableCollection<ArrSong>(); _Song = _MediaLibrary.Songs; GroupSong(); GroupAlbum(); GroupArtist(); record2 = new Record2(this, 2); Record2.isAvailable = true; }