Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python – Create() function in wxPython

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In this particular article we are going to learn about Create() function present in wx.Frame class. Create function is similar to Frame() constructor of wx.Frame class. Create function is used in two-step frame construction.

Syntax :

wx.Frame.Create(parent, id=ID_ANY, title="", pos=DefaultPosition,
      size=DefaultSize, style=DEFAULT_FRAME_STYLE, name=FrameNameStr)

Parameters :

ParameterInput TypeDescription
parentwx.WindowParent window. Should not be None.
idwx.WindowIDControl identifier. A value of -1 denotes a default value.
titlestringTitle to the frame.
poswx.PointWindow position.
sizewx.WindowWindow size.
stylelongWindow style.
namestringWindow name.

Code Example:




# import wxPython
import wx
  
  
class Example(wx.Frame):
  
    def __init__(self, *args, **kw):
        super(Example, self).__init__(*args, **kw)
  
        self.InitUI()
  
    def InitUI(self):
  
        pnl = wx.Panel(self)
        Button = wx.Button(pnl, label ='New Frame', pos =(20, 20))
  
        Button.Bind(wx.EVT_BUTTON, self.OnNewFrame)
  
        self.SetSize((350, 250))
        self.SetTitle('wx.Button')
  
    def OnNewFrame(self, e):
        app = wx.App()
        frm = wx.Frame()
        frm.Create(None, title ="Frame using Create()")
        frm.Show()
        app.MainLoop()
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()  

Output :

Before clicking New Frame button:

After clicking New Frame button:


My Personal Notes arrow_drop_up
Last Updated : 10 May, 2020
Like Article
Save Article
Similar Reads
Related Tutorials