/// <summary>
 /// Fires the <see cref="SetlistClicked"/> event.
 /// </summary>
 public void Clicked()
 {
     SetlistClicked?.Invoke(FetchedSetlist, EventArgs.Empty);
 }
Example #2
0
 /// <summary>
 /// Fires the <see cref="SetlistClicked"/> event
 /// when a setlist is clicked.
 /// </summary>
 /// <param name="sender">The clicked setlist.</param>
 /// <param name="e">Ignored.</param>
 private void Setlist_Clicked(object sender, EventArgs e)
 {
     SetlistClicked?.Invoke(sender, e);
 }