Open In App

Python – Create multiple toolbars in wxPython

Last Updated : 30 Sep, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

As we created a single toolbar in our previous article we are now going to learn how can we create multiple toolbars in wxPython. So we are going to create two toolbars and add tools to both of them.

Steps :
1. Create a vertical sizer. 
2. Create first toolbar. 
3. Add tools to first toolbar. 
2. Create second toolbar. 
3. Add tools to second toolbar. 
4. Associate toolbars with sizer. 
 

Code Example : 
create two toolbars  

Python3




import wx
 
 
class Example(wx.Frame):
 
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
 
        self.InitUI()
 
    def InitUI(self):
 
        vbox = wx.BoxSizer(wx.VERTICAL)
 
        toolbar1 = wx.ToolBar(self)
        toolbar1.AddTool(wx.ID_ANY, '', wx.Bitmap('/Desktop/wxPython/signs.png'))
        toolbar1.AddTool(wx.ID_ANY, '', wx.Bitmap('/Desktop/wxPython/login.png'))
 
        toolbar1.Realize()
 
        toolbar2 = wx.ToolBar(self)
        qtool = toolbar2.AddTool(wx.ID_EXIT, '', wx.Bitmap('/Desktop/wxPython/password.png'))
        toolbar2.Realize()
 
        vbox.Add(toolbar1, 0, wx.EXPAND)
        vbox.Add(toolbar2, 0, wx.EXPAND)
 
        self.Bind(wx.EVT_TOOL, self.OnQuit, qtool)
 
        self.SetSizer(vbox)
 
        self.SetSize((600, 4000))
        self.SetTitle('Multiple Toolbars')
        self.Centre()
 
    def OnQuit(self, e):
        self.Close()
 
 
def main():
 
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
 
 
if __name__ == '__main__':
    main()


Output : 

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads