“文本”当树节点部分可见时
文本(如下面的“临时 ASP.NET”)如何直接悬停在调用的树节点上?和工具提示有什么区别吗?
能不能控制可见度?例如,即使节点部分可见,也不显示。
图片:Windows 资源管理器
谢谢,
How's the text(like below "Temporary ASP.NET") hovers directly over the tree node called? Any difference from tooltip?
Can it be controlled on visibility? e.g. do not display even when the node is partially visible.
pic: Windows Explorer
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以控制此属性,但不能使用标准属性。
如果您覆盖 TreeView,并添加新的 CreateParams 覆盖,并添加以下代码,则不会出现工具提示:
此处找到代码
Yes, you can control this property, but not with a standard property.
If you override TreeView, and add a new CreateParams override, and add this code, then the tooltip won't appear:
Code found here