你可以在控件中,先得到父亲 GetParent 函数,然后调用该父亲的大小 GetWindowRect
假设应用程序类为CMyApp
主对话框类为CMyDlg
在你的控件类中如下高用
CMyApp* pApp = (CMyAPP*)AfxGetApp();
CMyDlg* pDlg = (CMyDlg*)pApp->m_hMainDlg;
CRect rc;
pDlg->GetWindowRect(&rc);
CWnd* pParent = GetParent( ) ;
if (pParent)
{
CRect rc;
pParent->GetWindowRect(&rc);
}