码迷,mamicode.com
首页 > 其他好文 > 详细

如何获取窗口的真实边框大小

时间:2019-10-29 11:38:29      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:cpp   void   如何获取   att   windows   窗口   边框   style   bottom   

因为Windows 10在左侧,右侧和底部都有细小的看不见的边框,它用于握住鼠标以调整大小。

边框可能看起来像这样:(7,0,7,7 左,上,右,下)

第一种方法,使用GetWindowRect()

GetWindowRect(hwnd, &rect);
rect.left += 7;
rect.top -= 0;
rect.right -= 7;
rect.bottom -= 7;

第二种方法,使用DwmGetWindowAttribute()

DwmGetWindowAttribute(hWnd, DWMWA_EXTENDED_FRAME_BOUNDS, (PVOID)&rect, sizeof(rect));

  

如何获取窗口的真实边框大小

标签:cpp   void   如何获取   att   windows   窗口   边框   style   bottom   

原文地址:https://www.cnblogs.com/strive-sun/p/11757635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!