将工具提示添加到组框
在阅读了每个属性的描述后,我找不到任何可以在 groupbox 类、文本框或列表视图中定义工具提示的内容。我可以请求一个链接来让我走上正轨吗?
After reading the descriptions of every property, I just can't find anything to define a tooltip in the groupbox class, or textbox or listview. Can I ask for a link to put me on the right track?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要定义工具提示,首先需要从工具箱中拖动一个工具提示组件。然后每个控件都会有附加的工具提示文本属性。您也可以手动执行此操作:
请参阅 msdn 文章此处< /a>.
To define tooltips, you first need to drag a ToolTip component on the from from the toolbox. Then every control will have addition tooltip text properties. You can also do that manually:
See the msdn article here.
ToolTip
控件添加到表单。从工具箱中拖放。toolTip1 上的工具提示
设置为所需的工具提示文本(toolTip1 是工具提示控件的名称)。ToolTip
control to the form. Drag and drop from the Toolbox.Tool Tip on toolTip1
to the desired tooltip text (toolTip1 is the name of your tooltip control).