c#.net 中带有工具提示图像的树节点
我正在研究树视图控件。我想插入鼠标悬停的功能,当鼠标悬停在树节点上发生动作时,应该显示该节点的工具提示。
如何为 Windows 应用程序 中的 Treevie 控件中的节点添加工具提示。
预先感谢你
I am working on treeview control. i would like to have insert a feature of mouse over, when ever mouse over action takes place on the tree node tool tip for the node should be shown.
how can i add tool tip for the nodes in the treevie control in windows application.
thanking you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我在文档 http://msdn.microsoft 中看到的。 com/en-us/library/system.windows.forms.treenode.aspx TreeNode 具有 ToolTipText 属性。你尝试过吗?您还必须将父 TreeView 的
ShowNodeToolTips
设置为 true!As I see in documentation http://msdn.microsoft.com/en-us/library/system.windows.forms.treenode.aspx TreeNode has ToolTipText property. Have you tried it? You have to set
ShowNodeToolTips
for the parent TreeView to true also!