Windows 2000 Style Wizards
Environment: VC6 Windows 9x/NT/2000
A Page from the Windows 2000 Style Wizard
Introduction
There are two main differences between the traditional MFC-CPropertySheet wizards and the Windows 2000 wizards:
- The Windows 2000 wizard has a white background.
- The "page" portion of the Windows 2000 wizard extends all the way to the edge of the dialog.
This article presents two classes that allows you to create Windows 2000 style wizards relatively easily. Both classes are actually derived from CDialog, rather than CPropertySheet or CPropertyPage. The classes make use of some techniques presented in Zoran M.Todorovic's CodeGuru article on
stacked dialog boxes, however there are extensive code changes from Zoran's work.
Another big advantage of this method of creating wizards is that you have total control over the placement and text of the wizard buttons, and you can even add other control outside of the wizard pages.
The Classes
The CNewWizDialog Class
CNewWizDialog is derived from CDialog, but it is analagous to CPropertySheet when creating a standard MFC wizard. You create a dialog template with Back, Next, Cancel, and Finish buttons. You create a CNewWizDialog-derived class for your dialog resource.
The CNewWizPage Class
CNewWizPage is also derived from CDialog, however it is analagous to CPropertyPage when creating a standard MFC wizard. You create a dialog resource for each page of the wizard. You create a CNewWizPage-derived class for each wizard page.
CNewWizDialog and CNewWizPage have very similar class interfaces to CPropertySheet and CPropertyPage respectively, so it should not be too difficult to convert your existing wizards to windows 2000 style wizards.
Creating the Main Dialog
1. In the Visual C++ resource editor, create a dialog template for the main wizard window. Be sure to give it Next, Back, Finish, and Cancel buttons. Buttons should have the following identifiers to match the standard MFC wizard:
Cancel -- IDCANCEL
Finish -- ID_WIZFINISH
Back -- ID_WIZBACK
Next -- ID_WIZNEXT
Placing the Cancel and Finish Buttons
In the traditional MFC wizards, The Finish button and the Cancel button are in the same position. One is hidden when the other is shown. If you want to mimic that behavior in these classes, it is simple enough, but you will have to make changes to
the CNewWizDialog::EnableFinish(BOOL bEnable) function to show are hide the proper buttons.
The Wizard Page Placeholder Control
You will also need to give your main wizard dialog a frame rectangle (picture) control to act as a placeholder. If you make the frame "etched", you will get a nicer appearance. Your dialog should look something like the one below.

2. Using ClassWizard, create a CDialog-derived class for your dialog resource. Change the base class from CDialog to CNewWizDialog. It is very important that you also change your message map to call the base class CNewWizDialog instead of CDialog as shown below. Otherwise, your wizards buttons will not work!
BEGIN_MESSAGE_MAP(CMasterDlg, CNewWizDialog)
//{{AFX_MSG_MAP(CMasterDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
3. Override WM_INITDIALOG. Before calling the base class implementation of OnInitDialog, you must call CNewWizDialog::SetPlaceholderID() passing the control ID of the place holder rectangle as a parameter.
Be sure to call the base class implementation CNewWizDialog::OnInitDialog and not CDialog::OnInitDialog as show below:
BOOL CMasterDlg::OnInitDialog()
{
// you must call this function in OnInitDialog
// before you call the base class!
SetPlaceholderID(IDC_SHEETRECT);
// make sure to call the proper base class
CNewWizDialog::OnInitDialog();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
Creating the Wizard Pages
Follow the these steps for each page in your wizard.
1. Create a dialog resource for the page. The dialog should have the following properties:
- Child Style
- No Border
- Not Visible
- Disabled
Note: You should make each wizard page the same size as the placeholder on your main wizard dialog.
2. Use ClassWizard to create a CDialog-derived class for the dialog resource. Add any handlers for controls that you may require.
3. Change the base class from CDialog to CNewWizPage. It is very important that you change the base classes for OnInitDialog, the constructor, and the message map.
BEGIN_MESSAGE_MAP(CSetupPage, CNewWizPage)
//{{AFX_MSG_MAP(CSetupPage)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
4. Override any of the following functions to add functionality and data validation to your wizard page:
// these functions behave the same as CPropertyPage virtual void CNewWizPage::OnCancel(); virtual BOOL CNewWizPage::OnKillActive(); virtual void CNewWizPage::OnSetActive(); virtual BOOL CNewWizPage::OnQueryCancel( ); virtual LRESULT CNewWizPage::OnWizardBack(); virtual LRESULT CNewWizPage::OnWizardNext(); virtual BOOL CNewWizPage::OnWizardFinish();
Putting it All Together
Once you have created all of your dialog classes as described above, you put the wizard together just as you would with a standard MFCCPropertySheet-based wizard. The only difference is that you must pass the ID of each pages's dialog resource to CNewWizDialog::AddPage().
CMasterDlg Dlg(this);
CSetupPage SetupPage;
CHardwarePage HardwarePage;
CPrinterPage PrinterPage;
Dlg.AddPage(&HardwarePage, CHardwarePage::IDD);
Dlg.AddPage(&SetupPage, CSetupPage::IDD);
Dlg.AddPage(&PrinterPage, CPrinterPage::IDD);
if (Dlg.DoModal() == ID_WIZFINISH)
{
AfxMessageBox("Finished Wizard");
}
else
{
AfxMessageBox("Cancelled Wizard");
}
Implementing the White Background
One of the new features in the Windows 2000 style wizards is a white background. This is pretty easy to implement, and it is also easy to disable if you do not like it.
1. In the declaration for CNewWizPage, we give the page it's own brush.
class CNewWizPage : public CDialog
{
[snip]
protected:
CBrush m_Brush;
[snip]
2. Override WM_INITDIALOG and create a white brush.
BOOL CNewWizPage::OnInitDialog()
{
CDialog::OnInitDialog();
// create the white brush for the background
m_Brush.CreateSolidBrush(RGB(255, 255, 255));
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
3. Override the WM_CTLCOLOR message, and return the white brush and set text background colors as appropriate.
HBRUSH CNewWizPage::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
switch (nCtlColor)
{
case CTLCOLOR_STATIC:
pDC->SetTextColor(RGB(0, 0, 0));
pDC->SetBkColor(RGB(255,255,255));
case CTLCOLOR_EDIT:
pDC->SetTextColor(RGB(0, 0, 0));
pDC->SetBkColor(RGB(255,255,255));
case CTLCOLOR_LISTBOX:
pDC->SetTextColor(RGB(0, 0, 0));
pDC->SetBkColor(RGB(255,255,255));
case CTLCOLOR_SCROLLBAR:
pDC->SetTextColor(RGB(0, 0, 0));
pDC->SetBkColor(RGB(255,255,255));
case CTLCOLOR_BTN:
pDC->SetTextColor(RGB(0, 0, 0));
pDC->SetBkColor(RGB(255,255,255));
case CTLCOLOR_DLG:
return m_Brush;
}
// TODO: Return a different brush if the default is not desired
return m_Brush;
}
Potential Problems
Many of the data validation functions for CNewWizPage return FALSE if the dialog data is not validated as desired. I did not spend a lot of time checking to make sure the classes worked as required when FALSE is returned from these functions. If you are doing a lot of data validation, be sure to test your wizard with invalid data so that it behaves as desired.
Downloads
Download demo project - 151 KbDownload source - 7 Kb

Comments
Skipping pages,...
Posted by Legacy on 01/11/2004 12:00amOriginally posted by: Nick
Hello.,
Thanks for your great article on Codeguru . I use your class CNewWizDialog , CNewWizPage for creating class wizard . I've 7 pages in my wizard . In certain conditions , I want to jump from 2nd page to 5th page by skipping 3rd & 4th page . Could you please tell me , how can I accomplish this task.?
Thanks Again for your anticipation.!
Warm Regards,
ReplyTINKLE.
Disable all button in a CProperty Page
Posted by Legacy on 10/06/2003 12:00amOriginally posted by: Moi
How can i disable the button next, back simultanouesly ?
Reply
XP Style Property Page?
Posted by Legacy on 06/18/2003 12:00amOriginally posted by: Mohit
I am having some trouble with displaying property pages using the XP Style controls. I am using EnableThemeDialogTexture method. This only changes the look of the property page but not the controls (buttons etc.). Please help.
ReplyThanks in advance
ActivatePage does not enable/disable buttons
Posted by Legacy on 05/21/2003 12:00amOriginally posted by: Stefan Hagel
ReplyReducing flicker with optimized redraw
Posted by Legacy on 03/10/2003 12:00amOriginally posted by: David Boyd
Replypages disappearered
Posted by Legacy on 02/27/2003 12:00amOriginally posted by: tom
the problem that i encountered is sometimes when i pressed Enter key on the keyboard, all the property pages disappearered and left a blank base-dialog, and i need to click Next or Back button to reactive those pages.
any help will be great appreciated.
-
-
Replymy solution
Posted by asyncevent on 04/06/2006 12:51pmoverride OnOK(),as masking enter pressed as in a standard dialog. like this: CTestPage::OnOK() { //CNewWizPage::OnOK(); }
Replypages disappeared
Posted by DanYELL on 02/03/2005 06:31pmTom, Did you ever resolve this? I get the same thing. If its a multiline edit box, hitting enter takes me to the next line. If its a singleline edit box, the whole page goes blank. Very wierd. Please, any response you can give me will be greatly appreciated. Sincerely, Danielle Brina (an overworked graduate student)
ReplyHelp
Posted by Legacy on 02/16/2003 12:00amOriginally posted by: Bruja
very good article and code. but I need to jump to a diferent page on clicking NEXT depending on something that happens with the controls of the active page. How can I do it?
ReplyBlank property sheet
Posted by Legacy on 08/13/2002 12:00amOriginally posted by: phil
When i click close or finish in the wizard it closes but leave a plank property sheet with the standard buttons still open. I then have to click cancel to close it, does anyone know why this may be happening and a possible fix.
Reply
tab order & mnemonics are not working
Posted by Legacy on 08/06/2002 12:00amOriginally posted by: tak
The tab order on each page does not work. Only the tab order on the navigation buttons are working. In addition, if mnemnoic value is defined on each page such &Click me string in a label caption, pressing alternate key+'C' key cannot set the focus on the label.
Any idea?
ReplyString Table
Posted by Legacy on 04/02/2002 12:00amOriginally posted by: Rajesh
hi,
ReplyHow i can modify the stringTable value dynamically. For Example in the String table contains IDS_HEADERTITLE "Sample Window".
i want to change the IDS_HEADERTITLE. dynamically how i can do that?.
thanks,
Rajesh.(rajesh_s76@hotmail.com)
Loading, Please Wait ...