工控编程吧
标题:
MFC如何获取任务栏窗口大小
[打印本页]
作者:
qq263946146
时间:
2019-7-18 17:00
标题:
MFC如何获取任务栏窗口大小
自己建立的工程中,可以在按钮的点击函数内调用下面代码来获取任务栏窗口大小。
//获得任务栏窗口
CWnd* pWnd = CWnd::FindWindow(_T("Shell_TrayWnd"), NULL);
//获得窗口大小
CRect rect;
pWnd->GetClientRect(rect);
CString strText = _T("");
strText.Format(_T("任务栏窗口大小:%d×%d"),
rect.Width(), rect.Height());
AfxMessageBox(strText);
欢迎光临 工控编程吧 (https://www.gkbc8.com/)
Powered by Discuz! X3.4