将工具提示添加到组框

发布于 2024-11-09 01:15:24 字数 78 浏览 0 评论 0原文

在阅读了每个属性的描述后,我找不到任何可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

緦唸λ蓇 2024-11-16 01:15:24

要定义工具提示,首先需要从工具箱中拖动一个工具提示组件。然后每个控件都会有附加的工具提示文本属性。您也可以手动执行此操作:

ToolTip toolTip1 = new ToolTip();
toolTip1.SetToolTip(this.groupBox1, "My groupBox1 tooltip!");
toolTip1.SetToolTip(this.checkBox1, "My checkBox1 tooltip!");

请参阅 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:

ToolTip toolTip1 = new ToolTip();
toolTip1.SetToolTip(this.groupBox1, "My groupBox1 tooltip!");
toolTip1.SetToolTip(this.checkBox1, "My checkBox1 tooltip!");

See the msdn article here.

段念尘 2024-11-16 01:15:24
  1. ToolTip 控件添加到表单。从工具箱中拖放。
  2. 转到组框的属性并将属性 toolTip1 上的工具提示 设置为所需的工具提示文本(toolTip1 是工具提示控件的名称)。
  1. Add ToolTip control to the form. Drag and drop from the Toolbox.
  2. Go to the properties of the group box and set property Tool Tip on toolTip1 to the desired tooltip text (toolTip1 is the name of your tooltip control).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文