wxpython使用多进程,wxPython事件驱动实例详解

本文介绍了wxPython的事件驱动编程,通过一个实例展示了如何在窗口移动时更新显示位置的事件处理。文中还提到了`wx.EVT_MOVE`事件以及`wx.Frame`的`OnMove`方法,解释了如何获取并使用事件对象中的位置信息。此外,还讨论了如何使用`Veto()`方法阻止事件的默认处理,例如在关闭窗口时弹出确认对话框。
摘要由CSDN通过智能技术生成

本文实例讲述了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()#应用程序事件循环

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

15209965961.jpg?201482810182

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程序设计有所帮助。

总结

以上是编程之家为你收集整理的wxPython事件驱动实例详解全部内容,希望文章能够帮你解决wxPython事件驱动实例详解所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值