Click here to Skip to main content
6,596,602 members and growing! (22,449 online)
Email Password   helpLost your password?
Desktop Development » Dialogs and Windows » General     Intermediate License: The MIT License

Cristi Potlog's Wizard Control for .NET

By Cristi Potlog

This article introduces a sample wizard control for Windows Forms.
C#, Windows, .NET 1.1VS.NET2003, Dev
Posted:26 Jun 2005
Updated:21 Sep 2005
Views:131,305
Bookmarked:152 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
51 votes for this article.
Popularity: 7.92 Rating: 4.64 out of 5
1 vote, 2.0%
1

2
2 votes, 3.9%
3
9 votes, 17.6%
4
39 votes, 76.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, along with any associated source code and files, is licensed under The MIT License

About the Author

Cristi Potlog


Member

Occupation: Software Developer
Location: Romania Romania

Other popular Dialogs and Windows articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 151 (Total in Forum: 151) (Refresh)FirstPrevNext
GeneralYour sample code not working. Pinmemberreachrishikh4:23 23 Jul '09  
Generalwonderful Pinmembergeigy17:19 1 Jul '09  
QuestionMade some changes to your control PinmemberItalianCousin8:28 19 Nov '08  
QuestionThis is EXACTLY what I was looking for! But, I need a little help... Please..? PinmemberWillem Le Roux5:24 18 Sep '08  
Generalkeeping wizard open after finish event Pinmemberkkumgul9:57 23 Jul '08  
GeneralRe: keeping wizard open after finish event PinmemberCristi Potlog22:08 19 Jan '09  
GeneralUpdate for 120 DPI PinmemberGlen Harvy12:48 22 May '08  
GeneralRe: Update for 120 DPI [modified] PinmemberStephenKearney17:18 29 May '08  
GeneralPlagiate!!! [modified] PinmemberAlex Kucherenko23:36 13 Mar '08  
GeneralRe: NOT quite Plagiate!!! PinmemberCristi Potlog23:01 20 Mar '08  
GeneralRe: NOT quite Plagiate!!! PinmemberAlex Kucherenko3:24 7 Apr '08  
GeneralRe: Plagiate!!! PinmemberValeri19:22 13 Apr '08  
GeneralRe: Plagiate!!! PinmemberAlex Kucherenko12:52 14 Apr '08  
GeneralStarting at a page other than page 0 PinmemberJohn Horigan6:50 18 Feb '08  
GeneralMissing buttons Pinmembermaeland21:24 16 Jan '08  
AnswerRe: Missing buttons PinmemberCristi Potlog0:07 20 Jan '08  
Generaladd events by double-clicking Pinmembersmileyth11:03 25 Oct '07  
AnswerRe: add events by double-clicking PinmemberCristi Potlog8:40 28 Oct '07  
QuestionShow Selected Wizard Page on Form Designer? Pinmemberrustyduckpa9:14 11 Oct '07  
AnswerRe: Show Selected Wizard Page on Form Designer? Pinmemberrustyduckpa10:26 11 Oct '07  
GeneralRe: Show Selected Wizard Page on Form Designer? PinmemberCristi Potlog10:23 17 Oct '07  
GeneralError VS2005 Pinmembervvvlad0:24 5 Oct '07  
GeneralHow can I make the Wizard control to be scrollable in a VS2005 editor PinmemberNR12312:33 13 Aug '07  
GeneralHow add skip button PinmemberSharique uddin Ahmed Farooqui4:53 15 Jul '07  
Questioncontrol not displayed in toolbox Pinmemberdxrysom7:49 4 Jul '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-2009
Web09 | Advertise on the Code Project