如何在Windows Phone中的InvokeCommandAction中将多个参数作为CommandParameter传递

时间:2014-10-24 00:13:20

标签: c# windows-phone-8.1

我在InvokeCommandAction中读到了关于将多个参数作为commandParameter传递的内容: How to pass Multiple parameters as CommandParameter in InvokeCommandAction In WPF App Using MVVM 但该解决方案适用于WPF。

我想在Windows Phone 8.1上做同样的事情。 Windows Phone上没有IMultiValueConverter。

如何在Windows手机上解决?

1 个答案:

答案 0 :(得分:0)

你可以创建一个包含多个参数的模型。

例如:

public class ParameterModel
{
    public string A { get; set;}
    public string B { get; set;}
}

并在CommandParameter中绑定模型