Rep_prac_u2 源码
Rep_prac_u2 #ejemplo 1导入wx app = wx.App(clearSigInt = True)#clearSigInt允许编程的终端控件CTRL + C frame = wx.Frame(parent = None,title =“”)##主窗口对象面板= wx.Panel(parent = frame)text = wx.StaticText(parent = panel,label =“ Hola,desde wxPython !!”,pos =(40,50))frame.Show()app.MainLoop() #ejemplo 2 import wx import webbrowser 类别MyApp(wx.App):def init(自己):super()。 初始化(clearSigInt = True) 类MyFrame(wx.Frame)
用户评论