Windows 窗体应用程序:网格视图上的帮助文本
我正在使用 DataGridView 在 C# 中开发 Windows 应用程序。如何添加当用户将鼠标悬停在列上时显示的帮助文本?
I am working on a Windows application in C# using a DataGridView. How do I add a help text to appear when the user hovers over the columns?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DataGridView 的
ToolTip
属性。一篇非常好的文章是How to: Add ToolTips to individual Cells in a Windows表单 DataGridView 控件。这就是你想要的。以下是示例代码。
Use the
ToolTip
property of DataGridView.A very good article is How to: Add ToolTips to Individual Cells in a Windows Forms DataGridView Control. It is what you want. Following is sample code.