Preventing an MDI Child Window from Changing SizeLast reviewed: July 22, 1997Article ID: Q71669 |
3.00 3.10
WINDOWS
kbprg
The information in this article applies to:
SUMMARYIn an application using the Windows multiple document interface (MDI), MDI child windows are always created with a maximize button, a minimize button, and a thick "sizing" border. Currently, it is not possible to modify this default behavior. However, it is possible to prevent an MDI child from being maximized, minimized, or sized. This can be done by performing two steps:
MORE INFORMATIONThe following sample MDI child window procedure can be used to implement an MDI child that can not be maximized, minimized or sized: LONG FAR PASCAL SampleMDIChildWndProc(hWnd, msg, wParam, lParam)
HWND hWnd; WORD msg; WORD wParam; LONG lParam; // This sample MDI child window procedure can be used to prevent the // MDI child from being maximized, minimized, or sized. // // Note that the child will still have a maximize button, a minimize // button, and a thick "sizing" border. Currently, there is no way to // prevent Windows from creating MDI children with these default // styles. // // We can, however, disable the maximizing, minimizing, and sizing // functionality by: // // 1. Disabling system menu options // 2. Trapping WM_SYSCOMMAND messages{ HMENU hSystemMenu; // the MDI child's system menu switch (msg) { case WM_INITMENU: // Disable and gray the Maximize, Minimize, and Size items // on the MDI child's system menu hSystemMenu = GetSystemMenu(hWnd, FALSE); EnableMenuItem(hSystemMenu, SC_MAXIMIZE, MF_GRAYED | MF_BYCOMMAND); EnableMenuItem(hSystemMenu, SC_MINIMIZE, MF_GRAYED | MF_BYCOMMAND); EnableMenuItem(hSystemMenu, SC_SIZE, MF_GRAYED | MF_BYCOMMAND); break; case WM_SYSCOMMAND: // "Eat" these system commands to disable maximizing, // minimizing, and sizing functionality. // Note that wParam must be combined with 0xFFF0, using // the C bitwise AND (&) operator, when processing // the WM_SYSCOMMAND message. switch (wParam & 0xFFF0) { case SC_MAXIMIZE: case SC_MINIMIZE: case SC_SIZE: return 1L; default: break; } break; default: break; } return DefMDIChildProc(hWnd, msg, wParam, lParam);}
|
Additional reference words: 3.00 3.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |