AXML:
<Button
android:id="@+id/greenButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Green"
local:MvxBind="Click ShowColorCommand, CommandParameter='Green'"/>
和视图模型:
public class MainViewModel
: MvxViewModel
{
public ICommand ShowColorCommand
{
get
{
return new MvxCommand(() => ShowViewModel<ColorViewModel>(new { color = ??? } ));
}
}
}
如何在我的命令中读取/使用来自 .axml('Green')的 CommandParameter?我需要在“???”里面放什么?
任何帮助表示赞赏