mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 18:20:51 +08:00
28 lines
508 B
C#
28 lines
508 B
C#
|
|
using System;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
|
|||
|
|
namespace Wpf.CartesianChart.ThreadSafe
|
|||
|
|
{
|
|||
|
|
public class RelayCommand : ICommand
|
|||
|
|
{
|
|||
|
|
private Action _action;
|
|||
|
|
|
|||
|
|
public RelayCommand(Action action)
|
|||
|
|
{
|
|||
|
|
_action = action;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool CanExecute(object parameter)
|
|||
|
|
{
|
|||
|
|
return true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void Execute(object parameter)
|
|||
|
|
{
|
|||
|
|
_action();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public event EventHandler CanExecuteChanged;
|
|||
|
|
}
|
|||
|
|
}
|