wxPython – wx.ToolBar 中的 SetToolShortHelp()函数
在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 SetToolShortHelp()函数。 SetToolShortHelp() 只是设置给定工具的简短帮助。
它有两个参数,toolId 和 helpString(new short help 字符串)。
Syntax:
Parameters:
Parameter | Input Type | Description |
---|---|---|
toolId | int | ID of the tool in question, as passed to AddTool. |
helpString | string | The string for the short help. |
代码示例 1:
wx.ToolBar.SetToolShortHelp(self, toolId, helpString)
输出: