Click here to Skip to main content
15,881,715 members
Articles / Desktop Programming / MFC
Article

Simple wizard property sheet class

Rate me:
Please Sign up or sign in to vote.
4.80/5 (6 votes)
14 Apr 2000 98.8K   2K   32   6
A simply class to turn CPropertySheet into wizard mode without needing to alert the property pages within
  • Download source files - 2 Kb
  • Introduction

    Windows allows a simple transition of your property sheet into wizard mode. However, this transition requires the property pages within the sheet to know about this. They should call SetWizardButtons() with the correct parameters on becoming active - which of course breaks encapsulation. The page needs to know it's part of wizard-style property sheet, and it needs to know its position within the sheet.

    My CWizardPropertySheet class solves the problem for simple wizards by having the CPropertySheet-derived class handle the appropriate SetWizardButtons() calls by itself.

    The CWizardPropertySheet class

    The CWizardPropertySheet is a drop-in replacement for CPropertySheet. It works both in wizard and "normal" modes. (The application must call SetWizardMode() to activate wizard mode, just as it would with a normal CPropertyPage.)

    To use it, simply #include "WizardPropertySheet.h" and use CWizardPropertySheet wherever you would use CPropertySheet. (Alternatively, you may import the class by ClassWizard.)

    What does it do?

    The CWizardPropertySheet shows the property pages added by AddPage() call in order they have been added. It disables the Back button on the first page, and it changes Next to Finish on the last page.

    How does it accomplish that?

    The message map of the class contains handlers:
    ON_BN_CLICKED(ID_WIZBACK, OnWizBack)
    ON_BN_CLICKED(ID_WIZNEXT, OnWizNext)

    The ID_WIZBACK and ID_WIZNEXT constants are defined in afxres.h. The handlers do the proper SetWizardButtons() call and then call Default(); to allow page change to proceed.

    Don't forget!

    Don't forget to call SetWizardMode() before DoModal() to put the property sheet into wizard more.

    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


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

    Comments and Discussions

     
    QuestionCCheckListBox in CPropertyPage Pin
    cnu reddy17-Sep-12 16:54
    cnu reddy17-Sep-12 16:54 
    QuestionIn CPropertySheet how to set both Wizard mode & Normal mode for an application? Pin
    shan_chandru20-Apr-09 3:47
    professionalshan_chandru20-Apr-09 3:47 
    Hi Friends,

    I have a requirement like in a CPropertySheet i need add four property pages, in that first two pages should contain Wizard mode property of CPropertySheet & the next two pages should behave like a normal mode.

    The current problem is that if i call 'objPropertySheet.SetWizardMode()' before 'objPropertysheet.domodal()', it applies to all the pages which i add in the sheet.

    Please provide me your valuable inputs. I use VS 2008 environment - 'VC++ MFC application'.

    Thanks in Advance.
    Generaluseless example Pin
    bfawad14-Aug-07 7:12
    bfawad14-Aug-07 7:12 
    Generaland a rude comment Pin
    KaЯl6-Sep-07 21:02
    KaЯl6-Sep-07 21:02 
    Generalowner drawn wizzard buttons Pin
    avishap1-Jun-05 5:55
    avishap1-Jun-05 5:55 
    Questioncan i make my dialog resource class inherit from this? Pin
    spoongirl8-May-02 3:15
    spoongirl8-May-02 3:15 

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

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