wxPython – wx.ToolBar 中的 SetToolDisabledBitmap()函数
在本文中,我们将学习与 wxPython 的 wx.ToolBar 类关联的 SetToolDisabledBitmap()函数。 SetToolDisabledBitmap()函数设置当工具处于禁用状态时具有给定 ID 的工具使用的位图。这只能用于按钮工具,不能用于控件。它需要两个参数 id 和 bitmap。
Syntax:
Parameters: Parameter Input Type Description id int ID of the tool in question, as passed to AddTool . bitmap wx.Bitmap Bitmap to use for disabled tools.
代码示例 1:
Python3
wx.ToolBar.SetToolDisabledBitmap(Self, id, bitmap)
输出:
点击勾选工具之前:
点击勾选工具后: