Compartir a través de


CWindow::ShowWindow

Establece el estado de la ventana.

BOOL ShowWindow(
   int nCmdShow 
) throw();

Comentarios

Vea ShowWindow en Windows SDK.

Ejemplo

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

Requisitos

encabezado: atlwin.h

Vea también

Referencia

Clase de CWindow