From 7477aa7330fad59caa68e475e09ace45b0698946 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 24 Jul 2023 13:03:08 +0200 Subject: [PATCH] Revert more breaking changes --- .../Notifications/IManagedNotificationManager.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs b/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs index 94d927f8ca..bd57f3a86f 100644 --- a/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs +++ b/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs @@ -20,21 +20,5 @@ namespace Avalonia.Controls.Notifications /// /// The content to be displayed. void Show(object content); - - /// - /// Shows a notification. - /// - /// The content to be displayed. - /// The of the notification. - /// the expiration time of the notification after which it will automatically close. If the value is then the notification will remain open until the user closes it. - /// an Action to be run when the notification is clicked. - /// an Action to be run when the notification is closed. - /// Style-classes to ba added to the notification card - void Show(object content, - NotificationType type, - TimeSpan? expiration = null, - Action? onClick = null, - Action? onClose = null, - string[]? classes = null); } }