Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

wpf

wizard

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?

like image 541
Jahan Avatar asked Jul 02 '13 06:07

Jahan


2 Answers

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.

like image 126
Arushi Agrawal Avatar answered Jan 02 '23 17:01

Arushi Agrawal


Check out the WPF Extended toolkit. It has a built in Wizard control.

Wizard

like image 43
d.moncada Avatar answered Jan 02 '23 17:01

d.moncada