39 lines
928 B
C#
39 lines
928 B
C#
using System.Windows.Input;
|
|
|
|
namespace EmbyToolbox.ViewModels;
|
|
|
|
public sealed class RelayCommand : ICommand
|
|
{
|
|
private readonly Action<object?> _execute;
|
|
private readonly Func<object?, bool>? _canExecute;
|
|
|
|
public RelayCommand(Action execute, Func<bool>? canExecute = null)
|
|
{
|
|
_execute = _ => execute();
|
|
_canExecute = canExecute is null ? null : _ => canExecute();
|
|
}
|
|
|
|
public RelayCommand(Action<object?> execute, Func<object?, bool>? canExecute = null)
|
|
{
|
|
_execute = execute;
|
|
_canExecute = canExecute;
|
|
}
|
|
|
|
public bool CanExecute(object? parameter)
|
|
{
|
|
return _canExecute?.Invoke(parameter) ?? true;
|
|
}
|
|
|
|
public void Execute(object? parameter)
|
|
{
|
|
_execute(parameter);
|
|
}
|
|
|
|
public event EventHandler? CanExecuteChanged;
|
|
|
|
public void RaiseCanExecuteChanged()
|
|
{
|
|
CanExecuteChanged?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|