QQ登录

只需一步,快速开始

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);

回复

使用道具 举报

快速回复 返回列表 客服中心 搜索