mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
12 lines
223 B
C#
12 lines
223 B
C#
namespace FluentTest.Commanding
|
|
{
|
|
using System;
|
|
using System.Windows.Input;
|
|
|
|
public interface IRelayCommand : ICommand
|
|
{
|
|
event EventHandler Executed;
|
|
|
|
event EventHandler Executing;
|
|
}
|
|
} |