次の方法で共有


CWindow::SendMessage

更新 : 2007 年 11 月

メッセージをウィンドウに送ります。ウィンドウ プロシージャがメッセージの処理を完了するまで制御を返しません。

LRESULT SendMessage(
   UINT message,
   WPARAM wParam = 0,
   LPARAM lParam = 0 
) throw();
static LRESULT SendMessage(
   HWND hWnd,
   UINT message,
   WPARAM wParam,
   LPARAM lParam 
) throw();

解説

Windows SDK の「SendMessage」を参照してください。

使用例

// The following example attaches a HWND to the CWindow
// object and sends a WM_PAINT message to the window
// wrapped by CWindow object using CWindow::SendMessage.

CWindow myWindow;
myWindow.Attach(hWnd);   
myWindow.SendMessage(WM_PAINT, 0L, 0L);

必要条件

ヘッダー : atlwin.h

参照

参照

CWindow クラス

CWindow::PostMessage

CWindow::SendNotifyMessage

CWindow::SendMessageToDescendants

その他の技術情報

CWindow のメンバ