Partager via


CWindow::PostMessage

Définit un message dans la file d'attente de messages associée au thread qui a créé la fenêtre.

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

Notes

Consultez l' Envoyez messages dans Kit de développement logiciel Windows.

Retourne la valeur sans attendre que le thread pour traiter le message.

Exemple

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

Configuration requise

Header: atlwin.h

Voir aussi

Référence

Classe de CWindow

CWindow::SendMessage

CWindow::SendNotifyMessage