基于wxpython实现的windows GUI程序实例


Posted in Python onMay 30, 2015

本文实例讲述了基于wxpython实现的windows GUI程序。分享给大家供大家参考。具体如下:

# using a wx.Frame, wx.MenuBar, wx.Menu, wx.Panel, wx.StaticText, wx.Button, 
# and a wx.BoxSizer to show a rudimentary wxPython Windows GUI application
# wxPython package from: http://prdownloads.sourceforge.net/wxpython/
# I downloaded: wxPython2.5-win32-ansi-2.5.3.1-py23.exe
# if you have not already done so install the Python compiler first
# I used Python-2.3.4.exe (the Windows installer package for Python23) 
# from http://www.python.org/2.3.4/
# tested with Python23   vegaseat   24jan2005
import wx
class Frame1(wx.Frame):
  # create a simple windows frame (sometimes called form)
  # pos=(ulcX,ulcY) size=(width,height) in pixels
  def __init__(self, parent, title):
    wx.Frame.__init__(self, parent, -1, title, pos=(150, 150), size=(350, 250))
    # create a menubar at the top of the user frame
    menuBar = wx.MenuBar()
    # create a menu ... 
    menu = wx.Menu()
    # ... add an item to the menu
    # \tAlt-X creates an accelerator for Exit (Alt + x keys)
    # the third parameter is an optional hint that shows up in 
    # the statusbar when the cursor moves across this menu item
    menu.Append(wx.ID_EXIT, "E&xit\tAlt-X", "Exit the program")
    # bind the menu event to an event handler, share QuitBtn event
    self.Bind(wx.EVT_MENU, self.OnQuitButton, id=wx.ID_EXIT)
    # put the menu on the menubar
    menuBar.Append(menu, "&File")
    self.SetMenuBar(menuBar)
    # create a status bar at the bottom of the frame
    self.CreateStatusBar()
    # now create a panel (between menubar and statusbar) ...
    panel = wx.Panel(self)
    # ... put some controls on the panel
    text = wx.StaticText(panel, -1, "Hello World!")
    text.SetFont(wx.Font(24, wx.SCRIPT, wx.NORMAL, wx.BOLD))
    text.SetSize(text.GetBestSize())
    quitBtn = wx.Button(panel, -1, "Quit")
    messBtn = wx.Button(panel, -1, "Message")
    # bind the button events to event handlers
    self.Bind(wx.EVT_BUTTON, self.OnQuitButton, quitBtn)
    self.Bind(wx.EVT_BUTTON, self.OnMessButton, messBtn)
    # use a sizer to layout the controls, stacked vertically
    # with a 10 pixel border around each
    sizer = wx.BoxSizer(wx.VERTICAL)
    sizer.Add(text, 0, wx.ALL, 10)
    sizer.Add(quitBtn, 0, wx.ALL, 10)
    sizer.Add(messBtn, 0, wx.ALL, 10)
    panel.SetSizer(sizer)
    panel.Layout()
  def OnQuitButton(self, evt):
    # event handler for the Quit button click or Exit menu item
    print "See you later alligator! (goes to stdout window)"
    wx.Sleep(1)  # 1 second to look at message
    self.Close()
  def OnMessButton(self, evt):
    # event handler for the Message button click
    self.SetStatusText('101 Different Ways to Spell "Spam"')
class wxPyApp(wx.App):
  def OnInit(self):
    # set the title too
    frame = Frame1(None, "wxPython GUI 2")
    self.SetTopWindow(frame)
    frame.Show(True)
    return True
# get it going ...
app = wxPyApp(redirect=True)
app.MainLoop()

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

Python 相关文章推荐
python使用multiprocessing模块实现带回调函数的异步调用方法
Apr 18 Python
在Django的模型中执行原始SQL查询的方法
Jul 21 Python
Python数据库的连接实现方法与注意事项
Feb 27 Python
python 禁止函数修改列表的实现方法
Aug 03 Python
使用requests库制作Python爬虫
Mar 25 Python
python实现简单tftp(基于udp协议)
Jul 30 Python
python抓取京东小米8手机配置信息
Nov 13 Python
Python openpyxl 插入折线图实例
Apr 17 Python
tensorflow指定CPU与GPU运算的方法实现
Apr 21 Python
django模型类中,null=True,blank=True用法说明
Jul 09 Python
python正则表达式 匹配反斜杠的操作方法
Aug 07 Python
Django扫码抽奖平台的配置过程详解
Jan 14 Python
python简单实现旋转图片的方法
May 30 #Python
Python实现控制台输入密码的方法
May 29 #Python
python删除过期文件的方法
May 29 #Python
Python的Django框架中TEMPLATES项的设置教程
May 29 #Python
编写Python脚本把sqlAlchemy对象转换成dict的教程
May 29 #Python
Python fileinput模块使用实例
May 28 #Python
Python sys.argv用法实例
May 28 #Python
You might like
Wordpress 相册插件 NextGEN-Gallery 添加目录将中文转为拼音的解决办法
2010/12/29 PHP
setcookie中Cannot modify header information-headers already sent by错误的解决方法详解
2013/05/08 PHP
PHP、Java des加密解密实例
2015/04/27 PHP
php微信公众号开发之翻页查询
2018/10/20 PHP
PHP crc32()函数讲解
2019/02/14 PHP
PHP设计模式之数据访问对象模式(DAO)原理与用法实例分析
2019/12/12 PHP
判断js对象是否拥有某一个属性的js代码
2013/08/16 Javascript
web 前端常用组件之Layer弹出层组件
2016/09/22 Javascript
微信小程序 登陆流程详细介绍
2017/01/17 Javascript
javascript ES6 新增了let命令使用介绍
2017/07/07 Javascript
nginx部署访问vue-cli搭建的项目的方法
2018/02/12 Javascript
JS/HTML5游戏常用算法之碰撞检测 包围盒检测算法详解【矩形情况】
2018/12/13 Javascript
NodeJs之word文件生成与解析的实现代码
2019/04/01 NodeJs
jQuery设置下拉框显示与隐藏效果的方法分析
2019/09/15 jQuery
JavaScript实现放大镜效果代码示例
2020/04/29 Javascript
Python THREADING模块中的JOIN()方法深入理解
2015/02/18 Python
Python with用法实例
2015/04/14 Python
python魔法方法-属性访问控制详解
2016/07/25 Python
Python编程生成随机用户名及密码的方法示例
2017/05/05 Python
python三引号输出方法
2019/02/27 Python
django页面跳转问题及注意事项
2019/07/18 Python
Django Admin后台添加数据库视图过程解析
2020/04/01 Python
CSS3制作苹果风格键盘特效
2015/02/26 HTML / CSS
NFL官方在线商店:NFLShop
2020/07/29 全球购物
设计毕业生简历中的自我评价
2013/10/01 职场文书
奖学金自我鉴定范文
2013/10/03 职场文书
财务会计人员求职的自我评价
2014/01/13 职场文书
村干部培训方案
2014/05/02 职场文书
三方股份合作协议书
2014/10/13 职场文书
2014年组织委员工作总结
2014/12/01 职场文书
2015年感恩父亲节演讲稿
2015/03/19 职场文书
大国崛起日本观后感
2015/06/02 职场文书
运动会开幕式致辞
2015/07/29 职场文书
穷人该怎么创业?谨记以下几点
2019/07/11 职场文书
创业开店,这样方式更合理
2019/08/26 职场文书
Python爬虫网络请求之代理服务器和动态Cookies
2022/04/12 Python