mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
12 lines
309 B
C#
12 lines
309 B
C#
using System.ComponentModel;
|
|
using System.Windows.Input;
|
|
|
|
namespace HKW.HKWUtils.Observable;
|
|
|
|
/// <summary>
|
|
/// 通知接收器
|
|
/// </summary>
|
|
/// <param name="sender">发送者</param>
|
|
/// <param name="e">参数</param>
|
|
public delegate void NotifyReceivedEventHandler(ICommand sender, CancelEventArgs e);
|