関数付きのコントロールへのポインターを持っています
CWnd* CWnd::GetDlgItem(int ITEM_ID)
だから私はCWnd*
ポインターは、コントロールを指しますが、指定されたコントロールのサイズと場所を取得するCWnd
クラス内でメソッドを見つけることができません。何か助けは?
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->
。
ストレート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
お役に立てれば!ハッピーコーディング:)