mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-25 23:30:10 +00:00
26 lines
818 B
C#
26 lines
818 B
C#
|
using System;
|
|||
|
using System.Windows.Input;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.WpfApp.ViewModel
|
|||
|
{
|
|||
|
public class DelegateCommand : ICommand
|
|||
|
{
|
|||
|
private readonly Action<object> _executeAction;
|
|||
|
private readonly Func<object, bool> _canExecuteAction;
|
|||
|
|
|||
|
public DelegateCommand(Action<object> executeAction, Func<object, bool> canExecuteAction)
|
|||
|
{
|
|||
|
_executeAction = executeAction;
|
|||
|
_canExecuteAction = canExecuteAction;
|
|||
|
}
|
|||
|
|
|||
|
public void Execute(object parameter) => _executeAction(parameter);
|
|||
|
|
|||
|
public bool CanExecute(object parameter) => _canExecuteAction?.Invoke(parameter) ?? true;
|
|||
|
|
|||
|
public event EventHandler CanExecuteChanged;
|
|||
|
|
|||
|
public void InvokeCanExecuteChanged() => CanExecuteChanged?.Invoke(this, EventArgs.Empty);
|
|||
|
}
|
|||
|
}
|