wxPython wx.ToolBar中的SetToolDisabledBitmap()函数
在这篇文章中,我们将学习与wxPython的wx.ToolBar类相关的SetToolDisabledBitmap()函数。SetToolDisabledBitmap()函数在工具处于禁用状态时,设置给定ID的工具所使用的位图。这只能用于Button工具,而不是控件。它需要两个参数id和bitmap。
语法 。
wx.ToolBar.SetToolDisabledBitmap(Self, id, bitmap)
参数 。
参数 | 输入类型 | 描述 |
---|---|---|
id | int | 有关工具的ID,与传递给AddTool的一样。 |
bitmap | wx.Bitmap | 用于禁用工具的位图。 |
代码示例1 :
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
self.toolbar = self.CreateToolBar()
td = self.toolbar.AddTool(1, 'right', wx.Bitmap('right.png'))
# set disabled bitmap for tool with id = 1
self.toolbar.SetToolDisabledBitmap(id = 1, bitmap = wx.Bitmap('wrong.png'))
self.toolbar.Realize()
self.Bind(wx.EVT_TOOL, self.OnOne, td)
self.SetSize((350, 250))
self.SetTitle('Undo redo')
self.Centre()
def OnOne(self, e):
# disable tool
self.toolbar.EnableTool(toolId = 1, enable = False)
# Realize() called to finalize new added tools
self.toolbar.Realize()
def OnQuit(self, e):
self.Close()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 。
点击打勾工具之前。
点击打勾工具后。