A wxPythonban ablakot a wx.Frame osztályból hozunk létre.
wx.CLIP_CHILDREN|wx.STAY_ON_TOP|wx.FRAME_NO_TASKBAR
Az ablak stílusát a style paraméterrel állítjuk be.
import wx class MainFrame(wx.Frame): def __init__(self, parent): super(MainFrame, self).__init__(parent, style=wx.ICONIZE|wx.MINIMIZE) button = wx.Button(self, label="Mehet") class ValamiApp(wx.App): def OnInit(self): frame = MainFrame(None) frame.Show() return True app=ValamiApp() app.MainLoop()