Delete Workbench directory

移除不要的文件夹
This commit is contained in:
一泓秋水
2025-01-02 13:58:55 +08:00
committed by GitHub
parent c47320d4de
commit 2c160d660a
26 changed files with 0 additions and 2953 deletions

View File

@@ -1,26 +0,0 @@
using System.Windows.Input;
namespace Serein.Workbench.Node
{
public class RelayCommand : ICommand
{
private readonly Action<object> _execute;
private readonly Func<object, bool> _canExecute;
public RelayCommand(Action<object> execute, Func<object, bool> canExecute = null)
{
_execute = execute;
_canExecute = canExecute;
}
public event EventHandler CanExecuteChanged;
public bool CanExecute(object parameter) => _canExecute == null || _canExecute(parameter);
public void Execute(object parameter) => _execute(parameter);
public void RaiseCanExecuteChanged() => CanExecuteChanged?.Invoke(this, EventArgs.Empty);
}
}