|
Dialog Box Template Styles
Every dialog box template specifies a combination of style values that define
the appearance and features of the dialog box. The style values can be window
styles, such as WS_POPUP and WS_SYSMENU, and dialog box styles, such as
DS_MODALFRAME. The number and type of styles for a template depends on the type and
purpose of the dialog box.
Windows passes all window styles given in the template to the CreateWindowEx function when creating the dialog box. Windows may pass one or more extended
styles depending on the given dialog box styles. For example, when the template
specifies DS_MODALFRAME, Windows uses WS_EX_DLGMODALFRAME when creating the
dialog box. When the template specifies DS_SYSMODAL, Windows uses WS_EX_TOPMOST.
All other dialog box styles affect how Windows manages the dialog box.
Most dialog boxes are pop-up windows that have a System menu and a title bar.
Therefore, the typical template specifies the WS_POPUP, WS_SYSMENU, and
WS_CAPTION styles. The template also specifies a border style: WS_BORDER for modeless
dialog boxes, and DS_MODALFRAME for modal dialog boxes. A template may specify
a window type other than pop-up (such as WS_OVERLAPPED) if it creates a
customized window instead of a dialog box.
Windows always displays a modal dialog box regardless of whether the
WS_VISIBLE style is given. When the template for a modeless dialog box specifies the
WS_VISIBLE style, Windows automatically displays the dialog box when it is
created. Otherwise, the application is responsible for displaying the dialog box by
using the ShowWindow function.
The template can specify the DS_SETFOREGROUND style to force Windows to bring
the dialog box to the foreground. This is especially useful for modal dialog
boxes that require immediate attention from the user regardless of whether the
owner window is the foreground window.
Using the DS_ABSALIGN style, Windows interprets dialog box measurements as
screen coordinates; using the DS_SETFONT style, Windows uses a given font, instead
of the system font, to draw text in the dialog box client area and in the
controls in the dialog box; the DS_NOIDLEMSG style prevents a modal dialog box from
sending WM_ENTERIDLE messages to the owner window. These styles are described in more detail in
later topics.
The DS_LOCALEDIT style does not apply to Win32-based applications.
Dialog boxes with the DS_SYSMODAL style receive the WS_EX_TOPMOST window style
but no other special properties or styles; this means the user still has
access to other windows on the desktop even though a DS_SYSMODAL dialog box may be
displayed.
| 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
|