获取当前主窗体的位置rect
CRect dlgNow;GetWindowRect(&dlgNow);
获取某一个控件当前的位置
CRect rect;CButton* pBtn = (CButton*)GetDlgItem(IDC_BUTTONXXX);//获取按钮控件pBtn->GetWindowRect(rect);CWnd* pWnd=(CWnd*)GetDlgItem(IDC_EDITXXX);//其它控件(包括按钮)pWnd->GetWindowRect(rect);
修改位置
//往屏幕右下角位置移动rect.left = rect.left + 100; rect.right = rect.right + 100;rect.top = rect.top + 100;rect.bottom = rect.bottom + 100;
移动位置
ScreenToClient(rect);//屏幕坐标转换为窗口坐标pWnd->MoveWindow(rect);//移动控件位置