mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
c00583dd98
1. Remove harder coded text, part of refactoring for PR #494 2. Remove other arguments redundant
42 lines
942 B
C#
42 lines
942 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wox.ViewModel
|
|
{
|
|
public class BaseViewModel : INotifyPropertyChanged
|
|
{
|
|
|
|
protected void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|