コード例 #1
0
        async void OnItemTapped(object sender, ItemTappedEventArgs e)
        {
            string      profileId   = (e.Item as HistoryViewModel).ProfileId;
            ProfilePage profilePage = new ProfilePage(Container, profileId);

            ((ListView)sender).SelectedItem = null;
            await Navigation.PushAsync(profilePage);
        }
コード例 #2
0
 async Task ShowProfile(string profileId)
 {
     ProfilePage profilePage = new ProfilePage(Container, profileId);
     await Navigation.PushAsync(profilePage);
 }