我在 Office 加载项中使用 Virtual Treeview 时遇到“提示窗口剩余”问题,现在我想自定义提示窗口以解决该问题。我想使用 JVCL 包中的 TJvBallonHint,它也用于我程序的其他部分。
我继承了 TVirtualStringTree 并重写了 GetHintWindowClass 方法,如下面的代码。应用了 TJvBallonHint 窗口类,但不绘制提示文本。对我有什么建议吗?谢谢!
function TMyStringTree.GetHintWindowClass: THintWindowClass;
begin
Result :=TJvBalloonWindow;;
end;