1

我想在 CDialog 的 OnInitDialog 期间获取 cx 和 cy。

我可以使用以下代码执行此操作:

myDialog::OnInitDialog()
{
  CRect rcWindow2;
  this->GetWindowRect(rcWindow2);
  CSize m_szMinimum = rcWindow2.Size();
  int width = m_szMinimum.cx;
  int height = m_szMinimum.cy;
}

但是,OnInitDialog 中的 cx 和 cy 与进入 OnSize 的 cx 和 cy 不同:

void myDialog::OnSize(UINT nType, int cx, int cy) 

来自 OnInitDialog:cx=417,cy=348

从 OnSize : cx=401, cy=310

看起来可能是边界,但我无法弄清楚。

关于如何在 OnInitDialog 中获得与输入 OnSize 相同的 xy 数据的建议将不胜感激。


遗产:

myDialog -> CDialog -> CWnd

4

1 回答 1

3

GetWindowRect返回窗口在屏幕坐标中的左上角位置。窗口的宽度和高度包括边框厚度和标题的高度。

GetClientRect左上角总是返回零。宽度和高度与 的值相同OnSize

当我们谈到这个主题时,当涉及到移动子窗口时,这也会让人感到困惑。因为SetWindowPos需要客户端坐标,而GetWindowRect只返回屏幕坐标。屏幕/客户端转换将需要这样:

void GetWndRect(CRect &rc, HWND child, HWND parent)
{
    GetWindowRect(child, &rc);
    CPoint offset(0, 0);
    ClientToScreen(parent, &offset); 
    rc.OffsetRect(-offset);
}

现在我们可以在对话框中移动一个按钮:

CWnd *child = GetDlgItem(IDOK);
CRect rc;
GetWndRect(rc, child->m_hWnd, m_hWnd);
rc.OffsetRect(-5, -5);
child->SetWindowPos(0, rc.left, rc.top, 0, 0, SWP_NOSIZE);
于 2015-04-15T00:37:56.557 回答