CSplitterWnd::IdFromRowCol

获取窗格的子窗口ID在指定的行和列。

int IdFromRowCol(
   int row,
   int col 
) const;

参数

  • row
    指定拆分窗口行。

  • col
    指定拆分窗口列。

返回值

窗格的子窗口ID。

备注

在窗格中存在之前,此成员函数用于创建nonviews用作窗格,并可以调用。

示例

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

要求

Header: afxext.h

请参见

参考

创建服务

层次结构图

CSplitterWnd::GetPane

CSplitterWnd::IsChildPane