如果你需要获取 CReBarCtrl 控件的客户区或窗口区域的矩形信息,可以使用 GetClientRect 或 GetWindowRect 方法。以下是一个示例:
CReBarCtrl m_wndReBar;
// 获取客户区矩形
CRect rectClient;
m_wndReBar.GetClientRect(&rectClient);
// 获取窗口区矩形
CRect rectWindow;
m_wndReBar.GetWindowRect(&rectWindow);
// 注意:rectClient 和 rectWindow 的坐标是相对于父窗口的
上述示例中,rectClient 是 CReBarCtrl 控件的客户区矩形,rectWindow 是窗口区矩形。请确保在调用这些方法之前已经成功创建了 CReBarCtrl 控件。
转载请注明出处:http://www.zyzy.cn/article/detail/21939/MFC/CReBarCtrl