与 .NET 中的 SystemInformation.CaptionHeight 等效的 Win32 API (MFC) 是什么?
我试图找出相当于.NET 中的SystemInformation.CaptionHeight 的Win32 API (MFC)。到目前为止,我查看了 SystemParametersInfo() (http://msdn.microsoft.com/en-us/library/ms724947%28v=VS.85%29.aspx),它似乎不符合要求。
I am trying to figure out the Win32 API (MFC) equivalent to SystemInformation.CaptionHeight in .NET. So far I looked at SystemParametersInfo() (http://msdn.microsoft.com/en-us/library/ms724947%28v=VS.85%29.aspx) and it doesn't seem to fit the bill.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用
GetSystemMetrics
,参数为SM_CYCAPTION
。 (如果您查看 .Net 属性的代码,就会发现它的作用就是如此。)You can call
GetSystemMetrics
with an argument ofSM_CYCAPTION
. (If you look at the code for the .Net property, that's all it does.)