pythonQt4 label点击,触发响应 ——转载

#-*- coding:utf-8 -*-
#pyqt4 label 控件设置label图标,获取点击事件
####label本身是没有点击功能的,因此我们需要将其重载,重载,我们也可以给他加上别的功能
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys
 
try:
    _encoding = QApplication.UnicodeUTF8
    def _translate(context, text, disambig):
        return QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
    def _translate(context, text, disambig):
        return QApplication.translate(context, text, disambig)
 
class myLabel(QLabel):
    def __init__(self,parent = None):
        super(myLabel,self).__init__(parent)
 
    def mousePressEvent(self, e):##重载一下鼠标点击事件
        print "you clicked the label"
 
    def mouseReleaseEvent(self, QMouseEvent):
        print 'you have release the mouse'
 
class MyWindow(QDialog,QWidget):
    def __init__(self,parent = None):
        super(MyWindow,self).__init__(parent)
        self.resize(400,400)
        self.mainlayout = QGridLayout(self)
        self.myLabelEx = myLabel()
        self.myLabelEx.setText(_translate("Form", "点我试试", None))
 
        self.mainlayout.addWidget(self.myLabelEx)
 
        self.myLabelEx.setToolTip(_translate("MainWindow", "", None))
 
 
 
app=QApplication(sys.argv)
window=MyWindow()
window.show()
app.exec_()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值