Click here to Skip to main content
15,892,697 members
Articles / Mobile Apps / Windows Phone 7

Implementing Wizard Functionality for Windows Phone 7 Applications

Rate me:
Please Sign up or sign in to vote.
4.88/5 (12 votes)
5 Aug 2011CPOL23 min read 38.7K   683   17  
This article presents how to build a wizard for WP7 applications.
using System;
using WizardLibrary;
using CaliburnSample1.ViewModels.WizardData;
using System.Diagnostics;
using CaliburnSample1.ViewModels;

namespace CaliburnSample1.ViewModels
{
    public class BasicSampleViewModel : SampleViewModel
    {
        private WizardViewModel wizard;
        public BasicSampleViewModel()
        {
            PageTitle = "Basic";
        }

        public WizardViewModel Wizard
        {
            get
            {
                if (wizard == null)
                    initWizard();
                return wizard;
            }
        }
        private void initWizard()
        {
            wizard = new WizardViewModel();
            wizard.Title = "Basic Wizard Title";
            wizard.AddStep("First Title", new FirstPageViewModel());
            wizard.AddStep("Second Title", new SecondPageViewModel());
            wizard.AddStep("Third Title", new ThirdPageViewModel());
            wizard.WizardCanceled += new EventHandler(wizard_WizardCanceled);
            wizard.WizardFinished += new EventHandler(wizard_WizardFinished);
        }
        private void wizard_WizardFinished(object sender, EventArgs e)
        {
            //the wizard is finished. retrieve the fields
            string fname = ((FirstPageViewModel)wizard.Steps[0].Content).FirstName;
            string lname = ((FirstPageViewModel)wizard.Steps[0].Content).LastName;
            //etc...
            //you have to know the wizard structure
            Debug.WriteLine(string.Format("Wizard completed for {0} {1}", fname, lname));
        }

        private void wizard_WizardCanceled(object sender, EventArgs e)
        {
            //handle the cancellation
            Debug.WriteLine("The wizard has been canceled");
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions