我已经通过函数
获得了控件的指针CWnd* CWnd::GetDlgItem(int ITEM_ID)
所以我有CWnd*
指针指向控件,
但是在CWnd
类中找不到任何方法
检索给定控件的大小和位置。
有什么帮助吗?
答案 0 :(得分:47)
CRect rect;
CWnd *pWnd = pDlg->GetDlgItem(YOUR_CONTROL_ID);
pWnd->GetWindowRect(&rect);
pDlg->ScreenToClient(&rect); //optional step - see below
//position: rect.left, rect.top
//size: rect.Width(), rect.Height()
GetWindowRect
给出控件的屏幕坐标。 pDlg->ScreenToClient
然后将它们转换为对话框的客户区域,这通常是您需要的。
注意:上面的pDlg
是对话框。如果您在对话框类的成员函数中,只需删除pDlg->
。
答案 1 :(得分:5)
直接MFC / Win32 :( WM_INITDIALOG示例)
RECT r;
HWND h = GetDlgItem(hwndDlg, IDC_YOURCTLID);
GetWindowRect(h, &r); //get window rect of control relative to screen
POINT pt = { r.left, r.top }; //new point object using rect x, y
ScreenToClient(hwndDlg, &pt); //convert screen co-ords to client based points
//example if I wanted to move said control
MoveWindow(h, pt.x, pt.y + 15, r.right - r.left, r.bottom - r.top, TRUE); //r.right - r.left, r.bottom - r.top to keep control at its current size
希望这有帮助!快乐的编码:)