wxPython – wx.Toolbar 中的 EnableTool()函数
在本文中,我们将学习 wxPython 的 wx.ToolBar 类的 EnableTool()函数。 EnableTool 用于启用或禁用(使可点击和不可点击)工具栏中的工具。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
toolid | int | ID of the tool to enable or disable, as passed to AddTool . |
enable | bool | If True, enables the tool, otherwise disables it. |
代码示例:
wx.ToolBar.EnableTool(self, toolid, enable)
输出 :