如何:在設計時為 Windows Form 上的控制項設定工具提示
您可以在 Visual Studio 中以程式碼或透過 Windows Forms 設計工具來設定 ToolTip 字串。 如需 ToolTip 元件的詳細資訊,請參閱工具提示元件概觀。
以程式設計方式設定工具提示
新增將顯示工具提示的控制項。
使用 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");
在設計工具中設定工具提示
在 Visual Studio 中,將 ToolTip 元件新增至表單。
選取將顯示工具提示的控制項,或將它新增至表單。
在 [屬性] 視窗中,將 ToolTip1 上的 ToolTip 值設定為適當的文字字串。
若要以程式設計方式移除工具提示
使用 ToolTip 元件的 SetToolTip 方法。
' In this example, Button1 is the control displaying the ToolTip. ToolTip1.SetToolTip(Button1, Nothing)
// In this example, button1 is the control displaying the ToolTip. toolTip1.SetToolTip(button1, null);
// In this example, button1 is the control displaying the ToolTip. toolTip1->SetToolTip(button1, NULL);
在設計工具中移除工具提示
在 Visual Studio 中,選取將顯示工具提示的控制項。
在 [屬性] 視窗中,刪除 ToolTip1 上的 ToolTip 中的文字。