在MFC C ++中获取窗口或面板的大小

时间:2015-03-14 13:02:52

标签: c++ visual-studio mfc size

如何获得"窗口的大小"或者"小组"在MFC C ++中? 有什么功能吗?

2 个答案:

答案 0 :(得分:0)

CRect MyRect;

CWnd :: GetDesktopWindow() - > GetWindowRect(MyRect)

答案 1 :(得分:0)

CWnd::GetWindowRect

CWnd  wnd; // the window to query
CRect wndrect;

wnd.GetWindowRect(wndrect);

从那里你可以得到

int w = wndrect.Width ();
int h = wndrect.Height();

这适用于所有类型的MFC窗口,因为所有MFC窗口类都继承CWnd