Partilhar via


CWindow::PostMessage

Coloca uma mensagem na fila de mensagem associada com o segmento que criou a janela.

BOOL PostMessage(
   UINT message,
   WPARAM wParam = 0,
   LPARAM lParam = 0 
) throw();

Comentários

Consulte PostMessage em Windows SDK.

Retorna sem esperar que o segmento para processar a mensagem.

Exemplo

//The following example attaches an HWND to the CWindow object and 
//posts a WM_PAINT message to the Window wrapped by the CWindow object 
//using CWindow::PostMessage() with the default values of WPARAM and 
//LPARAM

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.PostMessage(WM_PAINT);

Requisitos

Cabeçalho: atlwin.h

Consulte também

Referência

Classe de CWindow

CWindow::SendMessage

CWindow::SendNotifyMessage