2020-08-13 15:02:05 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
|
|
2020-10-22 09:45:48 -07:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels.Commands
|
2020-08-13 15:02:05 -07:00
|
|
|
|
{
|
|
|
|
|
|
public class RelayCommand<T> : ICommand
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly Action<T> execute;
|
|
|
|
|
|
|
|
|
|
|
|
private readonly Func<T, bool> canExecute;
|
|
|
|
|
|
|
|
|
|
|
|
public event EventHandler CanExecuteChanged;
|
|
|
|
|
|
|
|
|
|
|
|
public RelayCommand(Action<T> execute)
|
|
|
|
|
|
: this(execute, null)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public RelayCommand(Action<T> execute, Func<T, bool> canExecute)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.execute = execute ?? throw new ArgumentNullException(nameof(execute));
|
|
|
|
|
|
this.canExecute = canExecute;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool CanExecute(object parameter) => canExecute == null || canExecute((T)parameter);
|
|
|
|
|
|
|
|
|
|
|
|
public void Execute(object parameter) => execute((T)parameter);
|
|
|
|
|
|
|
|
|
|
|
|
public void OnCanExecuteChanged() => CanExecuteChanged?.Invoke(this, EventArgs.Empty);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|