数据网格中的工具提示
有没有办法让Datagrid中的工具提示显示超过30秒?
例如,这是我的代码 e.Item.Cells(7).Tooltip = e.Item.Cells(6).Text
鼠标悬停时工具提示将仅显示 6 或 7 秒,有什么方法可以增加工具提示的时间吗?
Is there any way to show the tooltip in Datagrid for more than 30 seconds?
example, here is my code
e.Item.Cells(7).Tooltip = e.Item.Cells(6).Text
on mousehover the tooltip will be displayed only 6 or 7 seconds, is there any way to increase the time for the tooltip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。
这些工具提示是您无法控制的浏览器行为。
相反,您可以使用自定义 Javascript 工具提示,例如这个。
No.
These tooltips are a browser behavior that you have no control over.
Instead, you can use a custom Javascript tooltip, such as this one.