Click here to Skip to main content
15,896,606 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.8K   683   17  
This article presents how to build a wizard for WP7 applications.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using WizardLibrary;

namespace MVVMSample1.View
{
    public partial class BasicWizardView : UserControl
    {
        Wizard wizard;
        public BasicWizardView()
        {
            InitializeComponent();
            this.Loaded += new RoutedEventHandler(BasicWizardView_Loaded);
        }

        void BasicWizardView_Loaded(object sender, RoutedEventArgs e)
        {
            wizard = DataContext as Wizard;
        }

        private void btnPrevious_Click(object sender, RoutedEventArgs e)
        {
            if (wizard != null)
                wizard.Previous();
        }

        private void btnNext_Click(object sender, RoutedEventArgs e)
        {
            if (wizard != null)
                wizard.Next();
        }

        private void btnFinish_Click(object sender, RoutedEventArgs e)
        {
            if (wizard != null)
                wizard.Finish();
        }

        private void btnCancel_Click(object sender, RoutedEventArgs e)
        {
            if (wizard != null)
                wizard.Cancel();
        }
    }
}

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