wxPython事件驱动实例详解

作者:shichen2014 时间:2021-09-21 18:25:11 

本文实例讲述了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 methodVeto().


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

标签:wxPython,事件
0
投稿

猜你喜欢

  • Django使用redis缓存服务器的实现代码示例

    2022-12-15 09:16:28
  • 对Python中DataFrame按照行遍历的方法

    2023-01-03 23:08:59
  • 30万条数据,搜索文本字段的各种方式对比

    2010-05-02 10:17:00
  • python 实现按对象传值

    2023-05-26 14:20:18
  • 教你如何利用Python批量翻译英文Word文档并保留格式

    2022-10-18 21:27:17
  • pandas使用函数批量处理数据(map、apply、applymap)

    2023-03-07 11:12:09
  • Pycharm2020.1安装无法启动问题即设置中文插件的方法

    2021-02-03 19:28:29
  • PyQt 如何创建自定义QWidget

    2023-09-13 17:30:48
  • ASPError(err)对象的相关基础知识

    2008-03-24 20:23:00
  • Dreamweaver层使用八定律

    2008-05-16 11:41:00
  • LINUX下Oracle数据导入导出的方法详解

    2023-07-06 15:20:32
  • python2与python3中关于对NaN类型数据的判断和转换方法

    2022-07-19 00:24:03
  • 零基础写python爬虫之抓取百度贴吧并存储到本地txt文件改进版

    2022-12-20 08:32:42
  • 如何使用SQLServer数据库查询累计值

    2009-03-16 14:43:00
  • SQL Server 自动增长清零的方法

    2012-01-05 19:07:47
  • 并行查询让SQL Server加速运行

    2009-03-16 16:31:00
  • python使用xlsxwriter实现有向无环图到Excel的转换

    2022-01-24 06:42:54
  • 使用python检测主机存活端口及检查存活主机

    2021-08-01 05:20:27
  • JavaScript Dom编程:介绍学习书籍

    2008-02-20 08:32:00
  • pandas 使用均值填充缺失值列的小技巧分享

    2023-01-21 02:29:25
  • asp之家 网络编程 m.aspxhome.com