2

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'"/>

およびViewModel:

public class MainViewModel
    : MvxViewModel
{
    public ICommand ShowColorCommand
    {
        get
        {
            return new MvxCommand(() => ShowViewModel<ColorViewModel>(new { color = ??? } ));
        }
    }
}

Command で .axml ('Green') から CommandParameter を読み取る/使用するにはどうすればよいですか? 「???」の中に何を入れる必要がありますか?

どんな助けでも大歓迎

4

1 に答える 1