To start using FPS Wizard in your WPF applications follow these steps:
<Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:wizard="clr-namespace:FPS.Wizard;assembly=FPS.Wizard" Title="Wizard Sample" > <Grid> <wizard:Wizard x:Name="wizard1" Transition="FadeAndGrowTransition"> <wizard:WizardPage Caption="Page -1" Description="This is the second page"> <Canvas> <TextBlock Text=" this is text block on canvas layout"/> </Canvas> </wizard:WizardPage> <wizard:WizardPage Background="Orange" Caption="Page -2" Description="This is the third page"> <StackPanel> <TextBlock Text="this is text block on stack layout"/> </StackPanel> </wizard:WizardPage> </wizard:Wizard> </Grid> </Window>