如何正确检测主题窗口的圆角半径
我正在尝试找到一种方法来检测主题窗口角的半径(请参阅附图)。例如,对于 Aero 主题,当 DWM 位于所有角上时,半径为 8,当 DWM 关闭时,只有顶角是弯曲的,半径为 6。现在我正在为不同的主题硬编码设置,我的问题是有更智能的方法来检测这些设置?
到目前为止,我查看了 Windows 视觉样式 api (UxTheme.dll),但找不到如何获取正确的半径,无论 DWM 打开还是关闭,Aero 的半径始终相同。
TIA
I'm trying to find a way to detect the radius of the themed window corner (pls, see the picture attached). E.g. for Aero theme when DWM is on all corners have radius 8, when DWM is off only top corners are curvy and have radius 6. Right now I'm hardcoding settings for different themes, and my questions is there more intelligent way of detecting these settings?
So far I looked to the windows visual styles api (UxTheme.dll) and can't find how to get the correct radius, it always the same for Aero no matter if DWM is on or off.
TIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对此不太确定。您可以尝试使用 SystemParametersInfo 与 SPI_GETNONCLIENTMETRICS 并查看在生成的 NONCLIENTMETRICS 结构的 iBorderWidth 和看看iPaddedBorderWidth是否可以找到相关性?
Not sure on this one. You might try using SystemParametersInfo with SPI_GETNONCLIENTMETRICS and looking at the resultant NONCLIENTMETRICS struct's iBorderWidth and iPaddedBorderWidth to see if you can find a correlation?