gpt4 book ai didi

delphi - 虚拟 TreeView 提示未显示

转载 作者:行者123 更新时间:2023-12-03 18:11:01 26 4
gpt4 key购买 nike

我已将 ShowHint 设置为 true 并将 HintMode 设置为 hmToolTip,但是当我将光标悬停在控件上时,我的 OnGetHint() 事件处理程序甚至没有断点

知道我做错了什么吗?

.


此外,是否有人对良好的文档、教程等有任何提示?例如,我在哪里可以找到 HintMode 属性的各种值的实际含义?

网站上的文档非常不完整,“使用新闻组或 Delphi Gems 留言板等其他资源来查找描述”这句话在 HMTL 帮助中出现了 789 次——通常是我真正需要帮助的地方:-/

[更新] 事实上,如果有文档记录,我愿意使用另一个组件,即使是一个不那么强大的组件。

谢谢!

最佳答案

源代码是您与 VirtualTree 最好的 friend ...

TVTHintMode = (
hmDefault, // show the hint of the control
hmHint, // show node specific hint string returned by the application
hmHintAndDefault, // same as hmHint but show the control's hint if no node is concerned
hmTooltip // show the text of the node if it isn't already fully shown

);

我通常使用这些选项来显示节点的提示文本

  ShowHint := True;
HintAnimation := hatFade;
HintMode := hmHint;

hmTooltip 正在使用节点的文本,因此在这种情况下它可能不会调用 OnGetHint。

关于delphi - 虚拟 TreeView 提示未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14270375/

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