Python学习笔记:GUI基本框架
程序员文章站
2022-04-12 09:52:55
...
简单的wxPython程序:
import wx
app=wx.App()
frame=wx.Frame(None,title='Hello,World!')
frame.Show(True)
app.MainLoop()
import wx
class MyApp(wx.App):
def OnInit(self):
frame=wx.Frame(None,title='Hello,World!')
frame.Show(True)
return True
if __name__=='__main__':
app=MyApp()
app.MainLoop()
import wx
class Frame1(wx.Frame):
def __init__(self,superior):
wx.Frame.__init__(self,parent=superior,title='Example',pos=(100,200),size=(350,200))
panel=wx.Panel(self)
text1=wx.TextCtrl(panel,value='Hello,World!',size=(350,200))
if __name__=='__main__':
app=wx.App()
frame=Frame1(None)
frame.Show(True)
app.MainLoop()
事件处理机制(Event Handling)
上一篇: 学习光影运用实现完美拍摄宝宝