Hi Adrian,
Generally, the commands of the control can be accessed through the RadWizardCommands class. You can check out the Commands topic for more information on the matter.
Please take a look at the snippet below, demonstrating how the MoveCurrentToNext command can be defined.
Then you should be able to bind the Command property of a Button to CurrentToNextCommand one.
I hope this helps.
Regards,
Stefan X1
Telerik
Generally, the commands of the control can be accessed through the RadWizardCommands class. You can check out the Commands topic for more information on the matter.
Please take a look at the snippet below, demonstrating how the MoveCurrentToNext command can be defined.
private
ICommand currentToNextCommand;
public
MyViewModel()
{
this
.currentToNextCommand =
RadWizardCommands.MoveCurrentToNext;
}
public
ICommand CurrentToNextCommand
{
get
{
return
this
.currentToNextCommand;
}
}
Then you should be able to bind the Command property of a Button to CurrentToNextCommand one.
I hope this helps.
Regards,
Stefan X1
Telerik
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.