wxPython学习之主框架实例

WBOY
Release: 2016-06-16 08:41:35
Original
1447 people have browsed it

本文实例讲述了wxPython主框架的简单用法,分享给大家供大家参考。具体如下:

程序代码如下:

import wx 
 
class MyApp(wx.App): 
  def OnInit(self): 
    wx.MessageBox("Hello jb51.net") 
    return True  #返回True表示框架正常运行 
 
if __name__ == "__main__": 
  app = MyApp(False)  #False参数表示不进行文件重定向 
  app.MainLoop()

Copy after login

运行效果图如下:

希望本文所述对大家的Python程序设计有所帮助

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template