CMFCWindowsManagerDialog Class
The CMFCWindowsManagerDialog
object enables a user to manage MDI child windows in a MDI application.
Syntax
class CMFCWindowsManagerDialog : public CDialog
Members
Public Constructors
Name | Description |
---|---|
CMFCWindowsManagerDialog::CMFCWindowsManagerDialog | Constructs a CMFCWindowsManagerDialog object. |
Remarks
The CMFCWindowsManagerDialog
contains a list of MDI child windows that are currently open in the application. The user can manually control the state of the MDI child windows by using this dialog box.
CMFCWindowsManagerDialog
is embedded inside the CMDIFrameWndEx Class. The CMFCWindowsManagerDialog
is not a class that you should create manually. Instead, call the function CMDIFrameWndEx::ShowWindowsDialog, and it will create and display a CMFCWindowsManagerDialog
object.
Example
The following example demonstrates how to construct a CMFCWindowsManagerDialog
object by calling CMDIFrameWndEx::ShowWindowsDialog
. This code snippet is part of the Visual Studio Demo sample.
void CMainFrame::OnWindowManager()
{
ShowWindowsDialog();
}
Inheritance Hierarchy
Requirements
Header: afxWindowsManagerDialog.h
CMFCWindowsManagerDialog::CMFCWindowsManagerDialog
Constructs a CMFCWindowsManagerDialog object.
CMFCWindowsManagerDialog(
CMDIFrameWndEx* pMDIFrame,
BOOL bHelpButton = FALSE);
Parameters
pMDIFrame
[in] A pointer to the parent or owner window.
bHelpButton
[in] A Boolean parameter that specifies whether the framework displays a Help button.
Remarks
For more information about visual managers, see Visualization Manager.