虚拟TreeView提示不显示

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

任何想法我做错了什么?


此外,有没有人有任何关于良好的文档,教程等的提示? 例如,我在哪里可以找到HintMode属性的各个值实际上是什么意思?

该网站上的文档非常不完整,在HMTL的帮助中出现了789次“使用其他资源,如新闻组或Delphi Gems留言板来查找说明” - 通常我需要帮助的地方: - /

[更新]实际上,如果有文件记录,我会愿意使用另一个组件,即使少一个组件。

谢谢 !


源代码是VirtualTree最好的朋友...

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。

链接地址: http://www.djcxy.com/p/34989.html

上一篇: Virtual TreeView hint not showing

下一篇: Expanding obout.com ASP.NET TreeView from Delphi WebBrowser