SAMPLE: Split32: How to Replace a View in a Splitter WindowLast reviewed: July 10, 1997Article ID: Q149257 |
|
4.00
WINDOWS NT
kbprg kbfile
The information in this article applies to: - The Microsoft Foundation Classes (MFC) included with: - Microsoft Visual C++, 32-bit Edition, version 4.0
SUMMARYThe SPLIT32 sample demonstrates the following Microsoft Foundation Class (MFC) programming concepts:
1. A ReplaceView() function can be created which replaces a
view in a CSplitterWnd pane with another. The function
replaces a view but uses the same CDocument object. This
function can be helpful if a programmer wants to keep the same
frame window and document for a splitter pane, and only wants to
delete a view in a pane and replace it with another.
2. The CDocument variable m_bAutoDelete can be used to prevent the
destruction of a CDocument object if all views of the document
are destroyed.
3. The CWnd::PreCreateWindow() function can be used to prevent
the main application from having a thick frame, thus preventing
the user from resizing the main application window.
4. By trapping the WM_SETCURSOR, WM_MOUSEMOVE, and WM_LBUTTONDOWN
messages of a CSplitterWnd, you can fix the splitter bars
in a splitter window so that they can't be moved by the user.
5. CSplitterWnd panes can contain regular CWnd objects and are not
limited to the use of CViews. This sample places a dialog in
the first pane.
6. CWnd::CenterWindow() can be used to position windows at the center
of the screen.
The following file is available for download from the Microsoft
Software Library:
~ Split32.exe (size: 46116 bytes)For more information about downloading files from the Microsoft Software Library, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q119591 TITLE : How to Obtain Microsoft Support Files from Online ServicesNOTE: Use the -d option when running SPLIT32.EXE to decompress the file and recreate the proper directory structure.
MORE INFORMATIONNOTE: The following Microsoft Software Library samples, which also replace various views, are also available:
Click on the View 1 and View 2 buttons. Notice that the view in the second pane will switch from one to the other. The view is changing, but after looking at the source you'll see that the document stays the same.
|
KBCategory: kbprg kbfile
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |