wxPython | Python中的 InsertSimpleTool()函数
在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 InsertSimpleTool()函数。 InsertSimpleTool()函数是另一种在工具栏中插入工具的旧式方法。 InsertSimpleTool()函数将具有指定属性的工具插入到工具栏的给定位置。
Syntax:
Parameters: Parameter Input Type Description pos int Position of tool to be added starting from 0. toolid int An integer by which the tool may be identified in subsequent operations. bitmap wx.bitmap The primary tool bitmap. shortHelpString string This string is used for the tools tooltip. longHelpString string detailed string associated with tool. isToggle int 0 for normal 1 for toggle button.
Return Type:
wx.ToolBarToolBase
代码示例 1:
Python3
wx.ToolBar.InsertSimplTool(self, pos, toolId, bitmap, shortHelpString="", longHelpString="", isToggle=0)
输出 :
在点击个人资料图标之前:
单击个人资料图标后: