http://www.codeproject.com/property/resizeable_wizard97.asp

解决方案 »

  1.   

    CPropertySheet::SetWizardMode
    void SetWizardMode( );ResCall this member function to establish a property page as a wizard. A key characteristic of a wizard property page is that the user navigates using Next or Finish, Back, and Cancel buttons instead of tabs. Call SetWizardMode before calling DoModal. After you call SetWizardMode, DoModal will return either ID_WIZFINISH (if the user closes with the Finish button) or IDCANCEL.SetWizardMode sets the PSF_WIZARD flag. ExampleCPropertySheet dlg;
    CPropertyPage page1, page2;dlg.AddPage(&page1);
    dlg.AddPage(&page2);
    dlg.SetWizardMode();
    dlg.DoModal();尽管我没有写过类似的程序,但是,好像CPropertySheet有你想要的能力