如何:在设计时为 Windows 窗体上的控件设置工具提示

更新:2007 年 11 月

可在代码中或 Windows 窗体设计器中设置 ToolTip 字符串。有关 ToolTip 组件的更多信息,请参见 ToolTip 组件概述(Windows 窗体)

说明:

显示的对话框和菜单命令可能会与“帮助”中的描述不同,具体取决于您的当前设置或版本。若要更改设置,请在“工具”菜单上选择“导入和导出设置”。有关更多信息,请参见 Visual Studio 设置

以编程方式设置工具提示

  1. 添加将显示工具提示的控件。

  2. 使用 ToolTip 组件的 SetToolTip 方法。

    ' In this example, Button1 is the control to display the ToolTip.
    ToolTip1.SetToolTip(Button1, "Save changes")
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1.SetToolTip(button1, "Save changes");
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1.SetToolTip(button1, "Save changes");
    
    // In this example, button1 is the control to display the ToolTip.
    toolTip1->SetToolTip(button1, "Save changes");
    

在设计器中设置工具提示

  1. 将一个 ToolTip 组件添加到窗体中。

  2. 选择将显示工具提示的控件,或将其添加到窗体。

  3. 在“属性”窗口中将“ToolTip1 上的 ToolTip”值设置为适当的文本字符串。

请参见

任务

如何:更改 Windows 窗体 ToolTip 组件的延迟

参考

ToolTip 组件概述(Windows 窗体)

其他资源

ToolTip 组件(Windows 窗体)