CWindow::ShowWindow

Imposta lo stato di visualizzazione della finestra.

BOOL ShowWindow(
   int nCmdShow 
) throw();

Note

Vedere ShowWindow in Windows SDK.

Esempio

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::ShowWindow() to show the window in its maximized state

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.ShowWindow(SW_SHOWMAXIMIZED);

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow