Files
aistudio-wpf-diagram/Others/Fluent.Ribbon/Fluent.Ribbon.Showcase/Commanding/IRelayCommand.cs
2023-04-16 20:11:40 +08:00

12 lines
223 B
C#

namespace FluentTest.Commanding
{
using System;
using System.Windows.Input;
public interface IRelayCommand : ICommand
{
event EventHandler Executed;
event EventHandler Executing;
}
}