我在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手机上解决?
答案 0 :(得分:0)
你可以创建一个包含多个参数的模型。
例如:
public class ParameterModel
{
public string A { get; set;}
public string B { get; set;}
}
并在CommandParameter中绑定模型