wxPython wx.ToolBar中的ToggleTool()函数
在这篇文章中,我们将学习与wxPython的wx.ToolBar类有关的ToggleTool()函数。ToggleTool()函数被用来开启或关闭一个工具。这不会导致任何事件的发出。它需要两个参数,即toolId和toggle。
语法 。
wx.ToolBar.ToggleTool(self, toolId, toggle)
参数 。
参数 | 输入类型 | 参数描述 |
---|---|---|
toolId | int | 有关工具的ID,与传递给AddTool的一样。 |
toggle | bool | 如果是True,则开启该工具,否则将关闭该工具。 |
代码示例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'), kind = wx.ITEM_CHECK)
te = self.toolbar.AddTool(2, 'wrong', 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):
# Toggle tool using ToggleTool() function
self.toolbar.ToggleTool(toolId = 1, toggle = True)
# 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()
输出:
点击工具前:
点击工具后: