2024-10-07 15:15:18 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Net462DllTest.Utils
|
|
|
|
|
|
{
|
2024-10-07 22:52:10 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用于窗体View与ViewModel进行交互
|
|
|
|
|
|
/// </summary>
|
2024-10-07 15:15:18 +08:00
|
|
|
|
public class RelayCommand : ICommand
|
|
|
|
|
|
{
|
|
|
|
|
|
private readonly Action<object> _execute;
|
|
|
|
|
|
private readonly Func<object,bool> _canExecute;
|
|
|
|
|
|
|
|
|
|
|
|
public RelayCommand(Action<object> execute, Func<object, bool> canExecute = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
_execute = execute;
|
|
|
|
|
|
_canExecute = canExecute;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public event EventHandler CanExecuteChanged;
|
|
|
|
|
|
|
|
|
|
|
|
public bool CanExecute(object parameter = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
return _canExecute == null || _canExecute(parameter);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Execute(object parameter = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
_execute(parameter);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void RaiseCanExecuteChanged()
|
|
|
|
|
|
{
|
|
|
|
|
|
CanExecuteChanged?.Invoke(this, EventArgs.Empty);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|