What is the best way to make a wizard using native WPF controls

Jahan picture Jahan · Jul 2, 2013 · Viewed 9.7k times · Source

I'm new to WPF and never happened the need for me to create a wizard in WPF. I want to know what control to use to make a simple wizard in WPF that I can collect information on each page and finalize an operation in the last page(step). I actually want to make it using native WPF controls. I don't know, like using page navigations or so. Any native wpf ideas?

Answer

Arushi Agrawal picture Arushi Agrawal · Jul 2, 2013

You can make use of Tab Control for making a wizard.

For moving to the next screen on a particular index can bind the SelectedIndex property of the tab control to a property in the view model and if you do not wish to display the tab items in UI can set its height to 0.