Partager via


CWinApp::m_nCmdShow

Correspond au paramètre d' nCmdShow passé par windows à WinMain.

int m_nCmdShow;

Notes

Vous devez passer m_nCmdShow comme argument lorsque vous appelez CWnd::ShowWindow pour la fenêtre principale de votre application. m_nCmdShow est une variable publique de type int.

Exemple

   // 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();

Configuration requise

Header: afxwin.h

Voir aussi

Référence

CWinApp, classe

Graphique de la hiérarchie