|
Creating Frame and Child Windows
After registering its window classes, an MDI application can create its
windows. First, it creates its frame window by using the CreateWindow or CreateWindowEx function. After creating its frame window, the application creates its client
window, again by using CreateWindow or CreateWindowEx. The application should specify MDICLIENT as the client window's class name;
MDICLIENT is a preregistered window class defined by Windows. The lpvParam parameter of CreateWindow or CreateWindowEx should point to a CLIENTCREATESTRUCT structure. This structure contains the members described in the following
table:
Member
| Description
| hWindowMenu
| Identifies the Window menu used for controlling MDI child windows. As child
windows are created, the application adds their titles to the Window menu as menu
items. The user can then activate a child window by choosing its title from
the Window menu.
| idFirstChild
| Specifies the identifier of the first MDI child window. The first MDI child
window created is assigned this identifier. Additional windows are created with
incremented window identifiers. When a child window is destroyed, Windows
immediately reassigns the window identifiers to keep their range contiguous.
|
When a child window's title is added to the Window menu, Windows assigns an
identifier to the child window. When the user chooses a child window's title, the
frame window receives a WM_COMMAND message with the identifier in the wParam parameter. You should specify a value for the idFirstChild member that does not conflict with menu-item identifiers in the frame
window's menu.
Multipad's frame window procedure creates the MDI client window while
processing the WM_CREATE message. The following example shows how the client window is created.
case WM_CREATE:
{
CLIENTCREATESTRUCT ccs;
// Retrieve the handle of the Window menu and assign the
// first child window identifier.
ccs.hWindowMenu = GetSubMenu(GetMenu(hwnd), WINDOWMENU);
ccs.idFirstChild = IDM_WINDOWCHILD;
// Create the MDI client window.
hwndMDIClient = CreateWindow( "MDICLIENT", (LPCTSTR) NULL,
WS_CHILD | WS_CLIPCHILDREN | WS_VSCROLL | WS_HSCROLL,
0, 0, 0, 0, hwnd, (HMENU) 0xCAC, hInst, (LPSTR) &ccs);
ShowWindow(hwndMDIClient, SW_SHOW);
}
break;
Titles of child windows are added to the bottom of the Window menu. If the
application adds strings to the Window menu by using the AppendMenu function, these strings can be overwritten by the titles of the child windows
when the Window menu is repainted (whenever a child window is created or
destroyed). An MDI application that adds strings to its Window menu should use the InsertMenu function and verify that the titles of child windows have not overwritten
these new strings.
Use the WS_CLIPCHILDREN style to create the MDI client window to prevent the
window from painting over its child windows.
| 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
|