Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon.Showcase/Commanding/IRelayCommand.cs

12 lines
223 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
namespace FluentTest.Commanding
{
using System;
using System.Windows.Input;
public interface IRelayCommand : ICommand
{
event EventHandler Executed;
event EventHandler Executing;
}
}