|
Wizard Property Sheets
You can create a special type of property sheet called a wizard, which consists of a sequence of dialog boxes that guide the user through the
steps of an operation, such as setting up a device or creating a birthday
card. In a wizard property sheet, the pages do not have tabs, and only one page is
visible at a time. Also, instead of having Ok and Apply Now buttons, a wizard
property sheet has a Back button, a Next or Finish button, and a Cancel button.
To tell the property sheet which buttons to enable, use the PSM_SETWIZBUTTONS message with the PSWIZB_BACK, PSWIZB_NEXT, PSWIZB_FINISH, and
PSWIZB_DISABLEDFINISH values. You create and initialize a wizard property sheet just as you
would a standard property sheet, except that you must include the PSH_WIZARD
value in the dwFlags member of the PROPSHEETHEADER structure. The system ignores the pszCaption member; instead, it puts the label of the current page in the title bar of
the property sheet. When the user switches from one page to the next, the system
updates the title using the label of the current page.
You should use the following values to set the sizes of the elements in your
wizard property sheet. Using these values ensures that your pages conform to the
Window standards.
WIZ_BODYCX
| Width of the body of a page in a wizard property sheet. The body does not
include the bitmap area.
| WIZ_BODYX
| Horizontal coordinate of the upper left corner of the body of a page in a
wizard property sheet. Use zero for the vertical coordinate of the body of a page.
| WIZ_CXBMP
| Width of the bitmap area in a page of a wizard property sheet. Use WIZ_CYDLG
for the height of the bitmap area.
| WIZ_CXDLG
| Width of a page in a wizard property sheet.
| WIZ_CYDLG
| Height of a page in a wizard property sheet.
|
The dialog box procedure for a page in a wizard property sheet receives all of
the same notification messages as a standard property sheet page. In addition,
a wizard property sheet page receives three notification messages that a
standard property sheet page does not receive: PSN_WIZBACK, PSN_WIZNEXT, and PSN_WIZFINISH. A wizard page receives these notifications when the user chooses the Back,
Next, or Finish button.
When the user chooses the Back or Next button, the property sheet
automatically advances to the previous or next page. An application can prevent the
property sheet from advancing by setting the DWL_MSGRESULT value to 1 in response to the PSN_WIZBACK or PSN_WIZNEXT notification. To jump to a
page other than the previous or next one, an application should set DWL_MSGRESULT
to the identifier of the dialog box to be displayed.
The system automatically destroys the wizard property sheet when the user
clicks the Finish button. An application can prevent the wizard from being
destroyed by setting DWL_MSGRESULT to a nonzero value in response to the PSN_WIZFINISH notification message.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|