添加消息通知功能,使用Handy Control的Grow来实现的

This commit is contained in:
2025-06-14 19:34:12 +08:00
parent 1fbf8b8fa6
commit 5dfce624c4
10 changed files with 195 additions and 81 deletions

View File

@@ -0,0 +1,10 @@
using PMSWPF.Enums;
using PMSWPF.Models;
namespace PMSWPF.Services;
public interface INotificationService
{
void Show(Notification notification);
void Show(string message, NotificationType type, bool IsGlobal);
}