Click here to Skip to main content
Licence CPOL
First Posted 22 Mar 2006
Views 89,141
Downloads 370
Bookmarked 84 times

GN Wizard Framework

By Gary Noble | 21 Dec 2006
A simple Wizard framework.
2 votes, 3.9%
1

2

3
13 votes, 25.5%
4
36 votes, 70.6%
5
4.73/5 - 51 votes
2 removed
μ 4.64, σa 1.49 [?]

Introduction

This article will help you give your application a common wizard interface. One of the main reasons wizards were invented was to make common tasks easier to work with.

Background

The idea for my wizard came soon after I realized I was reproducing code to do the same thing again and again! As working with database applications is my main job, the need for wizard based procedures kept arising more and more. I felt the need to create a common wizard interface to suit my needs.

Implementation

Just drop the WizardTemplate control on a form, and you are ready to go.

Usage

  • Add the control to the toolbox (GNWizardFrameWork.dll).
  • Drop the WizardTemplate on a WinForm.
  • Add the pages
  • You are done!

Points of interest

The wizard component is written in VB.NET and inherits from UserControl. Attached to the wizard is a 3DLine control.

Page Layouts

Wizards usually have two different page layouts, one for exterior pages (the main/welcome page), and one for interior pages (the individual steps within the first and last pages).

Exterior Pages

Exterior pages usually have a sidebar graphic with a boxed logo. The GNWizardFramework doesn't support this; instead, I have made the exterior page as a blank canvas so the developer can set the complete layout, and not be limited to having a sidebar they might not want.

Interior Pages

The interior pages are pretty much the same as the exterior pages except for a few minor alterations. Firstly, as exterior pages fill the whole wizard except for the button bar based at the bottom of the wizard, the interior pages have a header panel, and the working panel locations is compensated by a header.

PageStyle enum

  • eWPS_Interior

    The wizard and page should be formatted as an interior page.

  • eWPS_Exterior

    The wizard and page should be formatted as an exterior page.

How the code is brought together

The wizard consists of three classes and two controls:

Class/Control Description
WizardTemplateDesigner (class) Designer for the Wizard template
WizardPage (class) Wizard page item
WizardPageCollection (class) Holds all the WizardPage details, and handles all events passed by a WizardPage
WizardTemplate (control) Wizard control
ThreeDLine (control) Simple 3D line control

Handling buttons

All pages (interior and exterior) have their own button handlers. Buttons can be accessed by the page you want to change or set:

WelcomePage.HasNextButton = True
WelcomePage.HasPreviousButton = False
WelcomePage.HasCancelButton =True
WelcomePage.HasFinishButton = False

Main Features

  • Easy to use: Simple design-time interface.
  • GUI: An easy to use GUI, what you see at design-time is what you see at runtime.
  • PC Support: Works under (tested so far) Win95/98, WinXP, Win2000, and Win2003 Server

Other Features

  • Runtime customization: You can change any part of the wizard at runtime.
  • Attach/add pages at runtime:
    'Inserting a custom page At runtime:
    
    '-- Inserts A New Page after the Current Page
    WizardTemplate.Pages.Insert(_
      WizardTemplate.Pages.IndexOf(CurrentWizPanel) + 1, _
      NewWizardPage)
    
    'Adding a custom page At runtime:
    '-- Adds A New Page To The End Of The wizard
    WizardTemplate.Pages.Add(NewWizardPage)

Conclusion

Not much here to learn from, but hopefully the library will be of some use. As this is my first article, please be lenient. I hope all of you at least enjoyed reading the article, and maybe you'll find the framework useful.

Licence (LGPL)

The GNWizardFramework library is copyright 2005-2006 to Gary Noble, but its source code and the binaries are free for commercial and non commercial use.

Only vote for this article if you like the library.

History

  • 1.01 (21-Dec-2006)
    • Updated the 'Previous Button' disabled issue pointed out by Bill Reinhold (Thanks Bill).
    • Updated the 'Toolbox bitmap' - Toolbox bitmaps are now handled properly.
  • 1.0 (21-Mar-2006) - Initial release.

License

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

About the Author

Gary Noble

Software Developer

United Kingdom United Kingdom

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralSet Focus of Next, Cancel and Finish Pinmemberjacodutoit21:46 5 Mar '08  
GeneralRe: Set Focus of Next, Cancel and Finish Pinmemberjacodutoit23:34 6 Mar '08  
GeneralOnMovePrevious, OnBeforeMoveNext Pinmemberemblabac5:58 15 Jan '08  
GeneralRe: OnMovePrevious, OnBeforeMoveNext PinmemberNiyazi Yarar11:54 18 Oct '11  
QuestionTrap button clicks? PinmemberAIroff0:18 23 Nov '07  
QuestionUsage Pinmemberstixoffire19:43 13 Nov '07  
AnswerRe: Usage PinmemberGary Noble23:17 13 Nov '07  
QuestionSpanish text for buttons (next, back, ...) Pinmemberamarino14:17 6 Oct '07  
QuestionEvent OnMovePrevious Pinmemberpatmorier0:49 2 Oct '07  
GeneralControls disappear when added to a Wizard Page PinmemberLonny Angell5:12 6 Aug '07  
GeneralRe: Controls disappear when added to a Wizard Page PinmemberMrPalermo14:53 1 Dec '07  
QuestionBest method to skip pages? PinmemberPhil Jeffrey18:32 1 Aug '07  
GeneralProblems when using DPI 120 PinmemberGeert van Horrik3:42 21 Jun '07  
GeneralRe: Problems when using DPI 120 PinmemberGary Noble5:45 21 Jun '07  
GeneralRe: Problems when using DPI 120 PinmemberGeert van Horrik5:52 21 Jun '07  
Hello,
 
I have been investigating this problem more deeply. The problem is that the wizardpages are stretched over the buttons. So, I will now solve the problem by setting the size of the wizard pages automatically for 120 DPI. In that case, the background of the wizardpages will not be in front of the wizard buttons.
 
Best regards,
 
-----
Geert
 
Need an advanced auto-update feature for your software? Try Updater!
Visit my website: http://www.catenalogic.com

GeneralRe: Problems when using DPI 120 PinmemberGary Noble6:04 21 Jun '07  
GeneralRe: Problems when using DPI 120 PinmemberGeert van Horrik6:27 21 Jun '07  
GeneralRe: Problems when using DPI 120 PinmemberGary Noble6:48 21 Jun '07  
GeneralRe: Problems when using DPI 120 PinmemberGeert van Horrik6:50 21 Jun '07  
GeneralDesigner Bug Pinmemberdwpmartin7:51 19 Jan '07  
QuestionIs this a bug?? Pinmemberwreinhold10:42 20 Dec '06  
AnswerRe: Is this a bug?? PinmemberGary Noble23:07 20 Dec '06  
GeneralRe: Is this a bug?? Pinmemberwreinhold2:30 21 Dec '06  
QuestionAdd to toolbar problem [modified] Pinmemberwreinhold5:07 15 Dec '06  
QuestionWill this work with VS2005 Pinmemberchilling1:03 25 Nov '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120210.1 | Last Updated 21 Dec 2006
Article Copyright 2006 by Gary Noble
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid