在 MFC(Microsoft Foundation Classes)中,CSplitterWnd::GetRowInfo 方法用于获取有关分隔窗口中指定行的信息。

以下是该方法的简要说明:
void GetRowInfo(
    int row,
    int& nMin,
    int& nIdeal,
    int& nMax
) const;

  •  row:指定要获取信息的行的索引。

  •  nMin:一个整数引用,用于接收指定行的最小大小。

  •  nIdeal:一个整数引用,用于接收指定行的理想大小。

  •  nMax:一个整数引用,用于接收指定行的最大大小。


使用示例:
// 假设 pSplitter 是你的 CSplitterWnd 对象
int rowIndex = 1;  // 你要获取信息的行的索引
int nMin, nIdeal, nMax;

pSplitter->GetRowInfo(rowIndex, nMin, nIdeal, nMax);

这样,你可以使用 CSplitterWnd::GetRowInfo 方法来获取分隔窗口中指定行的最小、理想和最大大小信息。


转载请注明出处:http://www.zyzy.cn/article/detail/22438/MFC/CSplitterWnd