5,276,156 members and growing! (19,813 online)
Email Password   helpLost your password?
Desktop Development » Dialogs and Windows » General     Intermediate

Cristi Potlog's Wizard Control for .NET

By Cristi Potlog

This article introduces a sample wizard control for Windows Forms.
C#, Windows, .NET 1.1, .NETVS, VS.NET2003, Dev

Posted: 26 Jun 2005
Updated: 21 Sep 2005
Views: 89,651
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
49 votes for this Article.
Popularity: 7.81 Rating: 4.62 out of 5
1 vote, 2.0%
1
0 votes, 0.0%
2
2 votes, 4.1%
3
9 votes, 18.4%
4
37 votes, 75.5%
5

Sample Wizard screenshot

Introduction

So I decided to make my contribution to the community. It's time to give something back.

Why do we need yet another wizard control sample, you might ask. My opinion on that is that there's never enough samples on any specific matter.

Background

This control uses VS.NET designers to give you a native support in the IDE. You can add pages to the wizard in the same way you add pages to a tab control. You can place additional controls on the wizard pages.

The control provides run-time events for controlling page navigation. I provided a sample application, with code, to demonstrate this.

The layout of the pages is based on the Wizard 97 Specification from MSDN, particularly on Graphic Design for Wizard Art for welcome and completion pages and interior pages also.

Using the control

Start by creating a new Windows Forms application.

Change the form's name to SampleWizard. Also make the following settings:

FormBorderStyle = FormBorderStyle.FixedDialog;
MaximizeBox = false;
MinimizeBox = false;
StartPosition = FormStartPosition.CenterScreen;
Text = "Sample Wizard";

Add a reference to the compiled Controls.dll assembly. The control should appear in the toolbox now:

The control in the toolbox.

If you double click on the item in the toolbox, an empty wizard will appear on the form:

The control placed on a form.

I set the default docking style of the wizard control to DockingStyle.Fill because usually there is nothing else on a Wizard dialog than the wizard itself.

Notice that the wizard properties appear in the property grid grouped under the Wizard category.

The cotrol's properties.

There are not many properties. This is just a sample control. You can extend it in any way you like, or you may suggest new functionality to me and I just could add those properties in the future.

To add pages to the wizard, you need to click on the Pages properties ellipsis button. The WizardPage Collection Editor appears.

WizardPage Collection Editor.

Here I added the first page and set its style properties to WizardPageStyle.Welcome.

There possible values for the wizard page's Style properties are:

WizardPageStyle.Standard // Standard interior wizard page

                         // with a white banner at the top.

WizardPageStyle.Welcome  // Welcome wizard page with white background

                         // and large logo on the left.

WizardPageStyle.Finish   // Finish wizard page with white background,

                         // a large logo on the left and OK button.

WizardPageStyle.Custom   // Blank wizard page that you can

                         // customize any way you like.

There are also two properties used to specify the title and description of each page. The page draws these texts at the right location depending on the page style. Note that a Custom page does not draw its texts, you are responsible for drawing them or you may not set them at all.

To set the images that appear on the page you need to go on the wizard itself. Here is an example using the pictures I provided with this sample:

Control's image properties set.

I chose to implement the images properties at the main control level to provide a consistent look to the wizard pages. If you want each page to have its own images you may change this implementation.

The welcome page should look now like this screenshot:

The welcome page preview.

Adding and setting the other pages is pretty straightforward.

You can use the control in the same way you use a Tab control. You add pages to the Pages collection and then you place additional controls on the wizard page, just like on a TabPage.

The coolest thing is that you can switch wizard pages at design time by clicking on the Back and Next buttons.

Using the code

Here are some sample code bits of handling the wizard control's events to provide the user with validation and more interaction:

/// <summary>

/// Handles the AfterSwitchPages event of wizardSample.

/// </summary>

private void wizardSample_AfterSwitchPages(object sender, 
        CristiPotlog.Controls.Wizard.AfterSwitchPagesEventArgs e)
{
    // get wizard page to be displayed

    WizardPage newPage = this.wizardSample.Pages[e.NewIndex];

    // check if license page

    if (newPage == this.pageLicense)
    {
        // sync next button's state with check box

        this.wizardSample.NextEnabled = this.checkIAgree.Checked;
    }
    // check if progress page

    else if (newPage == this.pageProgress)
    {
        // start the sample task

        this.StartTask();
    }
}

The above code shows you how to provide custom initialization of controls in the page about to be displayed.

/// <summary>

/// Handles the BeforeSwitchPages event of wizardSample.

/// </summary>

private void wizardSample_BeforeSwitchPages(object sender, 
             CristiPotlog.Controls.Wizard.BeforeSwitchPagesEventArgs e)
{
    // get wizard page already displayed

    WizardPage oldPage = this.wizardSample.Pages[e.OldIndex];

    // check if we're going forward from options page

    if (oldPage == this.pageOptions && e.NewIndex > e.OldIndex)
    {
        // check if user selected one option

        if (this.optionCheck.Checked == false && 
            this.optionSkip.Checked == false)
        {
            // display hint & cancel step

            MessageBox.Show("Please chose one of the options presented.",
                            "Sample Wizard",
                            MessageBoxButtons.OK,
                            MessageBoxIcon.Information);
            e.Cancel = true;
        }
        // check if user choosed to skip validation

        else if (this.optionSkip.Checked)
        {
            // skip the next page

            e.NewIndex++;
        }
    }
}

The above code shows you how to provide custom validation before leaving a page.

/// <summary>

/// Handles the Cancel event of wizardSample.

/// </summary>

private void wizardSample_Cancel(object sender, 
             System.ComponentModel.CancelEventArgs e)
{
    // check if task is running

    bool isTaskRunning = this.timerTask.Enabled;
    // stop the task

    this.timerTask.Enabled = false;

    // ask user to confirm

    if (MessageBox.Show("Are you sure you wand to exit the Sample Wizard?",
                        "Sample Wizard",
                        MessageBoxButtons.YesNo,
                        MessageBoxIcon.Question) != DialogResult.Yes)
    {
        // cancel closing

        e.Cancel = true;
        // restart the task

        this.timerTask.Enabled = isTaskRunning;
    }
}

This code shows you how to display a confirmation message to the user when one cancels the wizard.

/// <summary>

/// Handles the Finish event of wizardSample.

/// </summary>

private void wizardSample_Finish(object sender, System.EventArgs e)
{
    MessageBox.Show("The Sample Wizard finished succesfuly.",
                    this.Text,
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Information);
}

The above code simply displays a notification message after the wizard finishes.

/// <summary>

/// Handles the Help event of wizardSample.

/// </summary>

private void wizardSample_Help(object sender, System.EventArgs e)
{
    MessageBox.Show("This is a realy cool wizard control!\n:-)",
                    this.Text,
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Information);
}

The above code simply displays a notification when the user presses the Help button.

Credits

I need to mention that the code is based on Al Gardner's article on wizards: Designer centric Wizard control from which I took the design-time clicking functionality. I simplified the design of the component using less classes. Everything else is pretty much built from scratch.

History

  • September 5th 2005. Minor corrections.
  • August 12th 2005. Overrode NewIndex on BeforeSwitchPagesEventArgs to allow page skipping and provided a new sample page to be skipped.
  • July 2nd 2005. Fixed some behaviour and added Help button.
  • June 24th 2005. Initial release.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Cristi Potlog



Occupation: Software Developer
Location: Romania Romania

Other popular Dialogs and Windows articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 144 (Total in Forum: 144) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralUpdate for 120 DPImemberGlen Harvy12:48 22 May '08  
GeneralRe: Update for 120 DPI [modified]memberStephenKearney17:18 29 May '08  
GeneralPlagiate!!! [modified]memberAlex Kucherenko23:36 13 Mar '08  
GeneralRe: NOT quite Plagiate!!!memberCristi Potlog23:01 20 Mar '08  
GeneralRe: NOT quite Plagiate!!!memberAlex Kucherenko3:24 7 Apr '08  
GeneralRe: Plagiate!!!memberValeri19:22 13 Apr '08  
GeneralRe: Plagiate!!!memberAlex Kucherenko12:52 14 Apr '08  
GeneralStarting at a page other than page 0memberJohn Horigan6:50 18 Feb '08  
GeneralMissing buttonsmembermaeland21:24 16 Jan '08  
AnswerRe: Missing buttonsmemberCristi Potlog0:07 20 Jan '08  
Generaladd events by double-clickingmembersmileyth11:03 25 Oct '07  
AnswerRe: add events by double-clickingmemberCristi Potlog8:40 28 Oct '07  
QuestionShow Selected Wizard Page on Form Designer?memberrustyduckpa9:14 11 Oct '07  
AnswerRe: Show Selected Wizard Page on Form Designer?memberrustyduckpa10:26 11 Oct '07  
GeneralRe: Show Selected Wizard Page on Form Designer?memberCristi Potlog10:23 17 Oct '07  
GeneralError VS2005membervvvlad0:24 5 Oct '07  
GeneralHow can I make the Wizard control to be scrollable in a VS2005 editormemberNR12312:33 13 Aug '07  
GeneralHow add skip buttonmemberSharique uddin Ahmed Farooqui4:53 15 Jul '07  
Questioncontrol not displayed in toolboxmemberdxrysom7:49 4 Jul '07  
AnswerRe: control not displayed in toolboxmemberArlind Cela5:37 2 Oct '07  
GeneralFound Bug in cancel textmemberRoberto Faccani5:50 22 Jun '07  
QuestionCopyrightmemberwutongtree21:21 17 Jun '07  
AnswerRe: CopyrightmemberCristi Potlog12:12 19 Jun '07  
GeneralRe: CopyrightmemberBryanRoth6:05 24 Jul '07  
Question120 DPI?memberStephenKearney16:19 4 Jun '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 21 Sep 2005
Editor: Smitha Vijayan
Copyright 2005 by Cristi Potlog
Everything else Copyright © CodeProject, 1999-2008
Web19 | Advertise on the Code Project