Open In App

wxPython – Create empty window

wxPython is one of the most famous library in python for building GUI applications. In this first article of wxPython we will build an empty window using wxPython Library.

Steps to create empty window : 1. Import wx in your code 2. Create wx.App object 3. Create object for wx.Frame 4. Show frame using Show() function




# Import wx module
import wx
 
# Create a new app
app = wx.App(False)
 
# A Frame is a top-level window.# Create a new app
app = wx.App(False)
 
# A Frame is a top-level window.
frame = wx.Frame(None, wx.ID_ANY, "GeeksforGeeks")
 
# Show the frame.
frame.Show(True)
# Handle events using MainLoop() function   
app.MainLoop()
 
frame = wx.Frame(None, wx.ID_ANY, "GeeksforGeeks")
 
# Show the frame.
frame.Show(True)
 
# Handle events using MainLoop() function   
app.MainLoop()

As you run this program a new empty window will pop up on your screen with a label GeeksforGeeks. Output :

Article Tags :