VPet/VPet.Solution/SimpleObservable/ObservableCommand/NotifyReceivedEventHandler.cs

12 lines
309 B
C#
Raw Normal View History

2023-12-18 14:53:56 +00:00
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);