Tartalomjegyzék

< wxPython GUI

wxPython ablak

Ablak

A wxPythonban ablakot a wx.Frame osztályból hozunk létre.

Ablaktulajdonságok

wx.CLIP_CHILDREN|wx.STAY_ON_TOP|wx.FRAME_NO_TASKBAR

Példa

Az ablak stílusát a style paraméterrel állítjuk be.

main.py
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()

Forrás