다음을 통해 공유


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