14
Je suis obligatoire ma commande comme:Réception CommandParameter Valeur en MVVM
<Button Command="{Binding NextCommand}"
CommandParameter="Hello"
Content="Next" />
Ici, je lie également sa propriété CommandParameter, maintenant comment récupérer sa valeur de nextCommand.
public ICommand NextCommand
{
get
{
if (_nextCommand == null)
{
_nextCommand = new RelayCommand(
param => this.DisplayNextPageRecords()
//param => true
);
}
return _nextCommand;
}
}
Sa définition de la fonction:
public ObservableCollection<PhonesViewModel> DisplayNextPageRecords()
{
//How to fetch CommandParameter value which is set by
//value "Hello" at xaml. I want here "Hello"
PageNumber++;
CreatePhones();
return this.AllPhones;
}
Comment récupérer la valeur CommandParameter?
Merci d'avance.
Merci beaucoup, beaucoup de travail. Merci encore. –
et ensuite vous pouvez utiliser comme _nextCommand = new RelayCommand (this.DisplayNextPageRecords); ' –