添加项目文件。

This commit is contained in:
2025-05-29 08:58:58 +08:00
parent 9a83d517f0
commit 88ef76bd4d
12 changed files with 278 additions and 0 deletions

20
Message/MyMessage.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommunityToolkit.Mvvm.Messaging.Messages;
namespace PMSWPF.Message
{
public class MyMessage : ValueChangedMessage<int>
{
private int count;
public MyMessage(int value) : base(value)
{
}
public int Count { get => count; set => count = value; }
}
}