添加消息通知功能,使用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

13
Enums/NotificationType.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace PMSWPF.Enums;
public enum NotificationType
{
Info,
Warning,
Error,
Fatal,
Success,
Clear,
Ask
}