wxPython – Attach() function in wx.MenuBar

In this article, we are going to learn about Detach() function associated with wx.MenuBar class of wxPython. Attach() function simply attaches the menubar with the frame. 

Attach() function takes only one wx.Frame type argument.

Syntax: wx.MenuBar.Attach(self, frame)
Parameters:

Parameter Input Type Description
frame wx.Frame Frame to attach menubar to

Code Example:  

Python3




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.menubar = wx.MenuBar()
        self.fileMenu = wx.Menu()
 
        self.item = wx.MenuItem(self.fileMenu, 1, '&Check',
                                  helpString ="Check Help")
        self.item.SetBitmap(wx.Bitmap('right.png'))
 
        # SET BLUE COLOUR FOR TEXT FORMAT(R, B, G, A)
        self.item.SetTextColour((79, 81, 230, 255))
        self.fileMenu.Append(self.item)
        self.menubar.Append(self.fileMenu, '&File')
 
        # Attach menubar to frame
        self.menubar.Attach(self)
        self.SetSize((350, 250))
        self.SetTitle('Icons and shortcuts')
        self.Centre()
 
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
 
 
if __name__ == '__main__':
    main()


Output: 

 

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button