wxPython事件驱动实例详解


Posted in Python onSeptember 28, 2014

本文实例讲述了wxPython的事件驱动机制,分享给大家供大家参考。具体方法如下:

先来看看如下代码:

#!/usr/bin/python 
 
# moveevent.py 
 
import wx  #导入wx库 
 
class MoveEvent(wx.Frame): 
  def __init__(self, parent, id, title): 
    wx.Frame.__init__(self, parent, id, title, size=(250, 180)) #窗口大小为(250, 180) 
 
    wx.StaticText(self, -1, 'x:', (10,10))#parent, id, title, point 
    wx.StaticText(self, -1, 'y:', (10,30)) 
    self.st1 = wx.StaticText(self, -1, '', (30, 10)) 
    self.st2 = wx.StaticText(self, -1, '', (30, 30)) 
 
    self.Bind(wx.EVT_MOVE, self.OnMove)  #绑定Frame的move事件 
 
    self.Centre() 
    self.Show(True) 
 
  def OnMove(self, event): 
    x, y = event.GetPosition() 
    self.st1.SetLabel(str(x)) 
    self.st2.SetLabel(str(y)) 
     
app = wx.App()#生成应用程序 
MoveEvent(None, -1, 'move event')#调用自己的类,三个参数为:parent, id , title 
app.MainLoop()#应用程序事件循环

程序运行效果如下图所示:

wxPython事件驱动实例详解

wxStaticText的两个构造函数官方文档如下:
wxStaticText ()
   Default constructor.
wxStaticText (wxWindow *parent, wxWindowID id, const wxString &label, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0, const wxString&name=wxStaticTextNameStr)
 
Constructor, creating and showing a text control.

The event parameter in the OnMove() method is an object specific to a particular event type. In our case it is the instance of a wx.MoveEvent class. This object holds information about the event. For example the Event object or the position of the window. In our case the Event object is the wx.Frame widget. We can find out the current position by calling the GetPosition() method of the event.

OnMove()方法中的event参数是一种特殊的事件类型,在我们的例子中,它是wx.MoveEvnet类的一个实例.这个对象保存了事件的一些信息,比如这个事件对象或者窗口的位置.在我们例子中事件对象是一个wx.Frame控件.我们可以通过调用事件对象的GetPosition()得到当前位置信息.

Vetoing events

Sometimes we need to stop processing an event. To do this, we call the method Veto().

#!/usr/bin/python 
 
# veto.py 
 
import wx 
 
class Veto(wx.Frame): 
  def __init__(self, parent, id, title): 
    wx.Frame.__init__(self, parent, id, title, size=(250, 200)) 
 
 
    self.Bind(wx.EVT_CLOSE, self.OnClose) 
 
    self.Centre() 
    self.Show(True) 
 
  def OnClose(self, event): 
 
    dial = wx.MessageDialog(None, 'Are you sure to quit?', 'Question', 
      wx.YES_NO | wx.NO_DEFAULT | wx.ICON_QUESTION) 
    ret = dial.ShowModal() 
    if ret == wx.ID_YES: 
      self.Destroy() 
    else: 
      event.Veto() 
 
app = wx.App() 
Veto(None, -1, 'Veto') 
app.MainLoop()

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

Python 相关文章推荐
理解Python中的绝对路径和相对路径
Aug 30 Python
Python中super函数的用法
Nov 17 Python
Python3.5实现的罗马数字转换成整数功能示例
Feb 25 Python
Python中函数的基本定义与调用及内置函数详解
May 13 Python
python多线程并发实例及其优化
Jun 27 Python
python+selenium 鼠标事件操作方法
Aug 24 Python
Python实现ATM系统
Feb 17 Python
Python3 assert断言实现原理解析
Mar 02 Python
python+OpenCV实现图像拼接
Mar 05 Python
python神经网络编程实现手写数字识别
May 27 Python
Python reques接口测试框架实现代码
Jul 28 Python
Python爬虫+tkinter界面实现历史天气查询的思路详解
Feb 22 Python
python中的多重继承实例讲解
Sep 28 #Python
python错误处理详解
Sep 28 #Python
python中实现定制类的特殊方法总结
Sep 28 #Python
python之wxPython菜单使用详解
Sep 28 #Python
python中lambda函数 list comprehension 和 zip函数使用指南
Sep 28 #Python
python之wxPython应用实例
Sep 28 #Python
Python实现从url中提取域名的几种方法
Sep 26 #Python
You might like
PHP 删除一个目录及目录下的所有文件的函数代码
2010/05/26 PHP
PHP开源开发框架ZendFramework使用中常见问题说明及解决方案
2014/06/12 PHP
PHP大批量插入数据库的3种方法和速度对比
2014/07/08 PHP
PHP+Mysql树型结构(无限分类)数据库设计的2种方式实例
2014/07/15 PHP
PHP借助phpmailer发送邮件
2015/05/11 PHP
php使用curl详细解析及问题汇总
2016/08/11 PHP
php页面跳转session cookie丢失导致不能登录等问题的解决方法
2016/12/12 PHP
PHP性能分析工具xhprof的安装使用与注意事项
2017/12/19 PHP
PHP7创建销毁session的实例方法
2020/02/03 PHP
jquery简单实现鼠标经过导航条改变背景图
2013/12/17 Javascript
jquery浏览器滚动加载技术实现方案
2014/06/03 Javascript
jQuery学习笔记之基础中的基础
2015/01/19 Javascript
每天一篇javascript学习小结(Function对象)
2015/11/16 Javascript
JavaScript测试工具之Karma-Jasmine的安装和使用详解
2015/12/03 Javascript
jQuery实现鼠标选文字发新浪微博的方法
2016/04/02 Javascript
JQuery点击事件回到页面顶部效果的实现代码
2016/05/24 Javascript
Javascript中prototype的使用详解
2016/06/18 Javascript
老生常谈 js中this的指向
2016/06/30 Javascript
jquery datatable服务端分页
2016/08/31 Javascript
详解Vue-Cli 异步加载数据的一些注意点
2017/08/12 Javascript
react-navigation 如何判断用户是否登录跳转到登录页的方法
2017/12/01 Javascript
js数组去重的N种方法(小结)
2018/06/07 Javascript
深入理解令牌认证机制(token)
2019/08/22 Javascript
[48:20]OpTic vs Serenity 2018国际邀请赛小组赛BO2 第二场 8.18
2018/08/19 DOTA
win系统下为Python3.5安装flask-mongoengine 库
2016/12/20 Python
3行Python代码实现图像照片抠图和换底色的方法
2019/10/10 Python
如何基于Python批量下载音乐
2019/11/11 Python
python实现在多维数组中挑选符合条件的全部元素
2019/11/26 Python
TensorBoard 计算图的查看方式
2020/02/15 Python
Flask模板引擎Jinja2使用实例
2020/04/23 Python
Python+OpenCV图像处理——实现轮廓发现
2020/10/23 Python
python 录制系统声音的示例
2020/12/21 Python
ProBikeKit美国官网:自行车套件,跑步和铁人三项套件
2016/10/13 全球购物
个性与发展自我评价
2014/02/11 职场文书
委托协议书范本
2014/04/22 职场文书
jackson json序列化实现首字母大写,第二个字母需小写
2021/06/29 Java/Android