CSplitterWnd::IdFromRowCol

Ottiene la finestra figlio ID per il riquadro a righe e colonne specificate.

int IdFromRowCol(
   int row,
   int col 
) const;

Parametri

  • row
    Specifica la riga della finestra con separatore.

  • col
    Specifica la colonna della finestra con separatore.

Valore restituito

La finestra figlio ID per il riquadro.

Note

Questa funzione membro viene utilizzata per creare i nonviews come riquadri e può essere chiamata prima del riquadro esistente.

Esempio

HBRUSH CMySplitterWnd::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
   HBRUSH hbr = CSplitterWnd::OnCtlColor(pDC, pWnd, nCtlColor);

   if(nCtlColor == CTLCOLOR_LISTBOX && 
      pWnd->GetDlgCtrlID() == IdFromRowCol(1,0))
   {
      // Pane 1,0 is a list box. Set the color of the text to be blue.
      pDC->SetBkColor(m_BkColor);
      pDC->SetTextColor(RGB(0,0,255));
      return (HBRUSH)m_hbrListBoxBkgnd.GetSafeHandle();
   }
   // TODO: Return a different brush if the default is not desired
   return hbr;
}

Requisiti

Header: afxext.h

Vedere anche

Riferimenti

Classe di CSplitterWnd

Grafico della gerarchia

CSplitterWnd::GetPane

CSplitterWnd::IsChildPane