private void OnNotificationDismissed(object?sender, NotificationDismissedEventArgs e)
 {
     ((IList <string>)_eventsListBox.Items).Add($"Notification dismissed: {e.Reason}");
 }
Beispiel #2
0
 private static void ManagerOnNotificationDismissed(object?sender, NotificationDismissedEventArgs e)
 {
     Console.WriteLine($"Notification dismissed: {e.Reason}");
 }