Is there a wizard control in WPF?

wizard, wpf

Solution

WPF has a navigation infrastructure built in:

WPF Navigation Overview

Also check out the wizard sample

Problem

Are there any wizard type controls in WPF? I need functionality where I can go forward and back and use tabs to select a particular item which will show the details of the nested items. I can use the TabControl control but the tab items are dynamic so I cannot nest the region inside the tab item.

Original source