一个简单窗口的实现

>>> import wx
>>> def hello(event):
print "hello world"
>>> app=wx.App()
>>> win=wx.Frame(None,title="hello world",size=(200,100))

>>> button=wx.Button(win,label="hello")

>>> button.Bind(wx.EVT_BUTTON,hello)
>>> win.Show()
True
>>> app.MainLoop()

你可能感兴趣的:(一个简单窗口的实现)