CWnd::SendMessage

このウィンドウに指定されたメッセージを送信します。

LRESULT SendMessage(
   UINT message,
   WPARAM wParam = 0,
   LPARAM lParam = 0 
);

パラメーター

  • message
    送信されるメッセージを指定します。

  • wParam
    追加のメッセージ依存情報を指定します。

  • lParam
    追加のメッセージ依存情報を指定します。

戻り値

メッセージの処理の結果; この値が送信されるメッセージによって異なります。

解説

SendMessage のメンバー関数呼び出しは直接ウィンドウ プロシージャは、そのウィンドウのプロシージャがメッセージを処理するまで戻らないします。これはウィンドウのメッセージ キューにメッセージを設定し、すぐに制御を返す PostMessage のメンバー関数とは対照的です。

使用例

void CAboutDlg::OnPaint()
{
   // This code, normally emitted by the Application Wizard for a dialog-
   // based project for the dialog's WM_PAINT handler, runs only if the 
   // window is iconic. The window erases the icon's area, then
   // paints the icon referenced by m_hIcon.
   if (IsIconic())
   {
      CPaintDC dc(this); // device context for painting

      SendMessage(WM_ICONERASEBKGND, (WPARAM)dc.GetSafeHdc(), 0);

      // Center icon in client rectangle
      int cxIcon = GetSystemMetrics(SM_CXICON);
      int cyIcon = GetSystemMetrics(SM_CYICON);
      CRect rect;
      GetClientRect(&rect);
      int x = (rect.Width() - cxIcon + 1) / 2;
      int y = (rect.Height() - cyIcon + 1) / 2;

      // Draw the icon
      dc.DrawIcon(x, y, m_hIcon);
   }
   else
   {
      CDialog::OnPaint();   
   }
}

必要条件

ヘッダー: afxwin.h

参照

関連項目

CWnd クラス

階層図

InSendMessage

CWnd::PostMessage

CWnd::SendDlgItemMessage

SendMessage