mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
28 lines
570 B
C#
28 lines
570 B
C#
|
|
using System;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
|
|||
|
|
namespace Flow.Launcher.Plugin.Explorer.ViewModels
|
|||
|
|
{
|
|||
|
|
internal 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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|