开发者

Receiving CommandParameter Value in MVVM

I am binding my command like:

<Button Command="{Binding NextCommand}" 
    CommandParameter="Hello" 
    Content="Next" /> 

Here, I also bind its CommandParameter property, now how to fetch its value from NextCommand.

public ICommand NextCommand
    {
        get
        {
            if (_nextCommand == null)
            {
                _nextCommand = new RelayCommand(
                    param => this.DisplayNextPageRecords()
                    //param => true
                    );
            }
            return _nextCommand;
        }
    }

Its function definition:

public ObservableC开发者_Go百科ollection<PhonesViewModel> DisplayNextPageRecords()
    {

            //How to fetch CommandParameter value which is set by 
            //value "Hello" at xaml. I want here "Hello"
            PageNumber++;
            CreatePhones();
            return this.AllPhones;

    }

How to fetch CommandParameter value?

Thanks in advance.


Change your method definition:

public ObservableCollection<PhonesViewModel> DisplayNextPageRecords(object o)
{
    // the method's parameter "o" now contains "Hello"
    PageNumber++;
    CreatePhones();
    return this.AllPhones;
}

See how when you create your RelayCommand, its "Execute" lambda takes a parameter? Pass that into your method:

_nextCommand = new RelayCommand(param => this.DisplayNextPageRecords(param));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜