Compartilhar via


CWindow::ShowWindow

Define o estado de apresentação da janela.

BOOL ShowWindow(
   int nCmdShow 
) throw();

Comentários

Consulte ShowWindow em Windows SDK.

Exemplo

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

Cabeçalho: atlwin.h

Consulte também

Referência

Classe de CWindow