Outils pour utilisateurs

Outils du site


python:wxpython:frame

Frame

import wx
 
class MyFrame(wx.Frame):
 
    def __init__(self, *args, **kw):
        super().__init__(*args, **kw)
 
        self.SetTitle(u"Titre de ma fenêtre")
 
app = wx.App()
 
frame = MyFrame(None)
frame.Show()
 
app.MainLoop()
python/wxpython/frame.txt · Dernière modification: 2024/01/28 15:12 par marclebrun