async void Handle_Clicked(object sender, System.EventArgs e) { //var songList = new SongModel[4]; //for (int i = 0; i < 4; i++) //{ // SongModel newSong = new SongModel(); // newSong.SongName = "songNameMock" + i.ToString(); // newSong.Singer = "Cold Play"; // songList.SetValue(newSong, i); //} SongModel cacheSong = new SongModel(); cacheSong.SongName = labelSong.Text; cacheSong.Singer = labelSinger.Text; await Navigation.PushAsync(new DetileSongPage(newSong), true); }