PowerToys/Wox/ViewModel/BaseViewModel.cs

30 lines
565 B
C#
Raw Normal View History

using System;
using System.Windows.Input;
namespace Wox.ViewModel
{
//todo rename file
public class RelayCommand : ICommand
{
2016-02-12 14:21:12 +08:00
private Action<object> _action;
2016-02-12 14:21:12 +08:00
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);
}
}
}