加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

wxPython事件驱动实例详解

发布时间:2020-12-17 07:23:49 所属栏目:Python 来源:网络整理
导读:本篇章节讲解wxPython的事件驱动机制,供大家参考研究。具体方法如下: 先来看看如下代码: #!/usr/bin/python # moveevent.py import wx #导入wx库 class MoveEvent(wx.Frame): def __init__(self,parent,id,title): wx.Frame.__init__(self,title,

本篇章节讲解wxPython的事件驱动机制,分享给大家供大家参考。具体方法如下:

先来看看如下代码:

#!/usr/bin/python 
 
# moveevent.py 
 
import wx  #导入wx库 
 
class MoveEvent(wx.Frame): 
  def __init__(self,parent,id,title): 
    wx.Frame.__init__(self,title,size=(250,180)) #窗口大小为(250,180) 
 
    wx.StaticText(self,-1,'x:',(10,10))#parent,point 
    wx.StaticText(self,'y:',30)) 
    self.st1 = wx.StaticText(self,'',(30,10)) 
    self.st2 = wx.StaticText(self,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,'move event')#调用自己的类,三个参数为:parent,title 
app.MainLoop()#应用程序事件循环 

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

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,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,'Veto') 
app.MainLoop()

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

您可能感兴趣的文章:

  • 详解Python实现多进程异步事件驱动引擎
  • wxpython中自定义事件的实现与使用方法分析
  • wxpython中Textctrl回车事件无效的解决方法
  • 详解Python的Twisted框架中reactor事件管理器的用法
  • Python中pygame的mouse鼠标事件用法实例
  • python基于pygame实现响应游戏中事件的方法(附源码)
  • Python捕捉和模拟鼠标事件的方法
  • Python利用pyHook实现监听用户鼠标与键盘事件
  • Python中使用PyHook监听鼠标和键盘事件实例
  • python模拟事件触发机制详解

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读