如何获得"窗口的大小"或者"小组"在MFC C ++中? 有什么功能吗?
答案 0 :(得分:0)
CRect MyRect;
CWnd :: GetDesktopWindow() - > GetWindowRect(MyRect)
答案 1 :(得分:0)
CWnd wnd; // the window to query
CRect wndrect;
wnd.GetWindowRect(wndrect);
从那里你可以得到
int w = wndrect.Width ();
int h = wndrect.Height();
这适用于所有类型的MFC窗口,因为所有MFC窗口类都继承CWnd
。