示例#1
0
        protected virtual void TapGestureRecognizer_Tapped(object sender, EventArgs e)
        {
            var args = new ArtistEventArgs {
                Artist = Artist
            };

            Tapped?.Invoke(this, args);
        }
 private void ArtistTapped(object sender, ContentViews.ArtistEventArgs e)
 {
     Navigation.PushAsync(new ArtistDetailPage(e.Artist));
 }