ICommand方法执行参数值

时间:2012-06-25 09:54:35

标签: c# parameters execute icommand

我尝试从wpf了解ICommand。

在我的Event类中,我实现了ICommand及其方法。

一个方法是执行:

public void Execute(object parameter)
{
    //Do something
}

现在是我的问题:什么值包含来自parameter的参数Execute

1 个答案:

答案 0 :(得分:3)

该值取决于您传递到命令的值。

就像一个小册子:

Command="{Binding CalculateCommand}" CommandParameter="LCM"/>

请点击此处:Command Binding with Parameter Passing了解更多详情。