wxPython wx.ToolBar中的RemoveTool()函数
在这篇文章中,我们将学习与wxPython的wx.ToolBar类有关的RemoveTool()函数。RemoveTool()将给定的工具从工具栏中移除,但不会删除它。这允许以后将这个工具插入/添加到这个(或另一个)工具栏中。RemoveTool()只接受id作为参数。
语法。
wx.ToolBar.RemoveTool(self, id)
参数:
参数 | 输入类型 | 参数描述 |
---|---|---|
id | int | 有关工具的ID,与传递给AddTool的一样。 |
返回类型。
wx.ToolBarToolBase
代码实例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, '', wx.Bitmap('wrong.png'))
te = self.toolbar.AddTool(2, '', wx.Bitmap('right.png'))
tf = self.toolbar.AddTool(3, '', wx.Bitmap('sep.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):
# delete tools from toolbar using RemoveTool() function
self.toolbar.RemoveTool(id = 2)
self.toolbar.RemoveTool(id = 3)
# 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()
输出:
点击交叉工具前:
点击十字架工具后: