显示工具提示使用过

显示工具提示使用过

本文介绍了显示工具提示使用过Windows窗体按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我怎么能显示工具提示使用过 Windows中的一个按钮窗体

How can I display a tooltip over a button using Windows Forms?

推荐答案

工具提示实际上是一个WinForms控制处理为单一形式的多个元素显示工具提示。

The ToolTip is actually a WinForms control that handles displaying tool tips for multiple elements on a single form.

假设你的按钮被称为用作MyButton。

Say your button is called MyButton.

  1. 添加工具提示控制(通用下在Windows窗体控件工具箱中)到表单中。
  2. 给它一个名字 - 说MyToolTip
  3. 将工具提示上MyToolTip杂项下用作MyButton(财产按钮属性网格)的文本,当你悬停应该出现的。
  1. Add a ToolTip control (under CommonControls in the Windows Formstoolbox) to your form.
  2. Give it aname - say MyToolTip
  3. Set the "Tooltip on MyToolTip" property of MyButton (under Misc inthe button property grid) to the text that should appear when you hover over it.

工具提示会自动出现,但如果您需要以编程方式显示出来,叫

The tooltip will automatically appear when the cursor hovers over the button, but if you need to display it programatically, call

MyToolTip.Show("Tooltip text goes here", MyButton)

在code键来显示工具提示,并MyToolTip.Hide(用作MyButton),以使其再次消失。

in your code to show the tooltip, and MyToolTip.Hide(MyButton) to make it disappear again.

这篇关于显示工具提示使用过Windows窗体按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 16:34