Hello,
We recently updated to 16.1.7 because we wanted to try out the new Wizard control which was added in this version.
Since the documentation for the wizard control are lacking good examples , I am struggling with integrating it using MVVM .
for example, to create a wizard one needs to declare a wizard object and add wizard pages to it. I noticed that the only place to handle Next, Back events is in the wizard object itself and since my pages are basically just user controls and viewmodel classes, I'd like to know if there is a different way I can wire stuff so I can handle the next event in each page since I have special business logic that needs to be executed every time a user transitions from one page to another.
I am attaching a sample project where I've been playing around and trying stuff out. You can see that the core of my logic is in the code behind where I handle the OnNext event and make decision based on user selection.
It would have been much nicer if I can handle it in the viewmodels and pass data between pages somehow.
I'd appreciate any suggestions you might have on how to properly integrate this control
Thank you.