mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-06 03:07:54 +08:00
29 lines
542 B
C#
29 lines
542 B
C#
using System;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wox.ViewModel
|
|
{
|
|
public class RelayCommand : ICommand
|
|
{
|
|
|
|
private Action<object> _action;
|
|
|
|
public RelayCommand(Action<object> action)
|
|
{
|
|
_action = action;
|
|
}
|
|
|
|
public virtual bool CanExecute(object parameter)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public event EventHandler CanExecuteChanged;
|
|
|
|
public virtual void Execute(object parameter)
|
|
{
|
|
_action?.Invoke(parameter);
|
|
}
|
|
}
|
|
}
|