gpt4 book ai didi

c - 如何在C++中动态获取工具提示的高度和宽度?

转载 作者:行者123 更新时间:2023-11-30 18:28:23 25 4
gpt4 key购买 nike

MSDN link for TTM_GETBUBBLESIZE没有示例如何返回较低的单词和较高的单词。没有从谷歌得到太多。请提供一个示例。

谢谢!

最佳答案

来自MSDN :

Returns the width of the tooltip in the low word and the height in the high word if successful.

Win API 上下文中的“单词”通常具有 16 位大小。

你必须使用一些bitwise arithmetic从消息的结果中提取宽度高度:

width  = result & 0xFFFF;   // extract the low word
height = result >> 16; // extract the high word

或者,在“windows.h”中声明的这些宏也执行相同的操作:

width  = LOWORD(result); 
height = HIWORD(result);

关于c - 如何在C++中动态获取工具提示的高度和宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47327934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com