CWnd::SendMessage

Invia il messaggio specificato a questa finestra.

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

Parametri

  • message
    Consente di specificare il messaggio da inviare.

  • wParam
    Specifica le informazioni messaggio-dipendenti aggiuntive.

  • lParam
    Specifica le informazioni messaggio-dipendenti aggiuntive.

Valore restituito

Il risultato dell'elaborazione di messaggio, il valore dipende dal messaggio inviato.

Note

Le chiamate di funzione membro SendMessage la routine della finestra direttamente e non restituisce alcun valore finché la routine della finestra non ha elaborato il messaggio.Ciò si differenzia dalla funzione membro PostMessage, che inserisce il messaggio nella coda di messaggi finestra e restituisce immediatamente.

Esempio

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();   
   }
}

Requisiti

Header: afxwin.h

Vedere anche

Riferimenti

Classe CWnd

Grafico della gerarchia

InSendMessage

CWnd::PostMessage

CWnd::SendDlgItemMessage

SendMessage