20211124_ZNZT_upperpc/MonitoringTechnology/Base/CommandBase.cs
2023-02-03 08:31:48 +08:00

32 lines
692 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace MonitoringTechnology.Base
{
public class CommandBase : ICommand
{
public event EventHandler CanExecuteChanged;
public bool CanExecute(object parameter)
{
return true;
}
public void Execute(object parameter)
{
this.DoExecute?.Invoke(parameter);
}
public Action<object> DoExecute { get; set; }
public CommandBase() { }
public CommandBase(Action<object> action)
{
DoExecute = action;
}
}
}