CWinApp::m_nCmdShow
更新 : 2007 年 11 月
Windows から WinMain に渡されたパラメータ nCmdShow に相当します。
int m_nCmdShow;
解説
アプリケーションのメイン ウィンドウに対して CWnd::ShowWindow 関数を呼び出すときに、m_nCmdShow を引数に渡す必要があります。m_nCmdShow は int 型のパブリック変数です。
使用例
// The following code fragment is taken from CMyApp::InitInstance.
// CMyApp is derived from CWinApp.
// The main window has been initialized, so show and update it
// using the nCmdShow parameter passed to the application when it
// was first launched.
// pMainFrame is the main MDI frame window of our app and is derived
// from CMDIFrameWnd.
pMainFrame->ShowWindow(m_nCmdShow);
pMainFrame->UpdateWindow();
必要条件
ヘッダー : afxwin.h