Exemplo n.º 1
0
        protected virtual void TapGestureRecognizer_Tapped(object sender, EventArgs e)
        {
            var args = new ArtistEventArgs {
                Artist = Artist
            };

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