mirror of
https://github.com/luanslimadev/Wand-Enhancer.git
synced 2026-08-28 23:01:14 +00:00
26 lines
807 B
C#
26 lines
807 B
C#
using System;
|
|
using System.Windows.Input;
|
|
|
|
namespace WeModPatcher.ReactiveCore
|
|
{
|
|
public sealed class RelayCommand : ICommand
|
|
{
|
|
private readonly Action<object> _execute;
|
|
private readonly Func<object, bool> _canExecute;
|
|
|
|
public event EventHandler CanExecuteChanged
|
|
{
|
|
add => CommandManager.RequerySuggested += value;
|
|
remove => CommandManager.RequerySuggested -= value;
|
|
}
|
|
|
|
public RelayCommand(Action<object> execute, Func<object, bool> canExecute = null)
|
|
{
|
|
_execute = execute;
|
|
_canExecute = canExecute;
|
|
}
|
|
|
|
public bool CanExecute(object parameter) => _canExecute == null || _canExecute(parameter);
|
|
public void Execute(object parameter) => _execute(parameter);
|
|
}
|
|
} |