web-dev-qa-db-ja.com

MFCのダイアログに配置されたコントロールのサイズと場所を取得する方法

関数付きのコントロールへのポインターを持っています

CWnd* CWnd::GetDlgItem(int ITEM_ID)

だから私はCWnd*ポインターは、コントロールを指しますが、指定されたコントロールのサイズと場所を取得するCWndクラス内でメソッドを見つけることができません。何か助けは?

21
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->

47
interjay

ストレート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

お役に立てれば!ハッピーコーディング:)

6
Jason Newland