委托System.Action不带1个参数

时间:2012-12-25 09:58:36

标签: c# lambda action

行动:

readonly Action _execute;

public RelayCommand(Action execute)
             : this(execute, null)
{
}

public RelayCommand(Action execute, Func<Boolean> canExecute)
{
    if (execute == null)
        throw new ArgumentNullException("execute");
    _execute = execute;
    _canExecute = canExecute;
}

其他班级代码:

public void CreateCommand()
{
    RelayCommand command = new RelayCommand((param)=> RemoveReferenceExcecute(param));}
}

private void RemoveReferenceExcecute(object param)
{
    ReferenceViewModel referenceViewModel = (ReferenceViewModel) param;
    ReferenceCollection.Remove(referenceViewModel);
}

为什么我会收到以下异常,我该如何解决?

  

委托'System.Action'不带1个参数

2 个答案:

答案 0 :(得分:8)

System.Action是无参数函数的委托。使用System.Action<T>

要解决此问题,请使用以下内容替换您的RelayAction课程

class RelayAction<T> {
    readonly Action<T> _execute;
    public RelayCommand(Action<T> execute, Func<Boolean> canExecute){
        //your code here
    }
    // the rest of the class definition
}

注意RelayAction类应该是通用的。另一种方法是直接指定将接收的参数_execute的类型,但这样您将限制使用RelayAction类。因此,在灵活性和稳健性之间存在一些权衡。

一些MSDN链接:

  1. System.Action
  2. System.Action<T>

答案 1 :(得分:0)

您可以定义命令'RemoveReferenceExcecute',而无需任何参数

RelayCommand command = new RelayCommand(RemoveReferenceExcecute);}

或者您可以向其中传递一些参数/对象:

RelayCommand<object> command = new RelayCommand<object>((param)=> RemoveReferenceExcecute(param));}

在第二种情况下,请不要忘记从您的视图中传递CommandParameter;