亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

python qpushbutton的鼠標事件處理

小樊
92
2024-09-06 16:02:20
欄目: 編程語言

在 PyQt5 中,要處理 QPushButton 的鼠標事件,你需要創建一個自定義按鈕類并重寫相應的事件處理方法

import sys
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton
from PyQt5.QtCore import Qt

class CustomButton(QPushButton):
    def __init__(self, text, parent=None):
        super().__init__(text, parent)

    def mousePressEvent(self, event):
        if event.button() == Qt.LeftButton:
            print("左鍵點擊")
        elif event.button() == Qt.RightButton:
            print("右鍵點擊")
        super().mousePressEvent(event)

    def mouseReleaseEvent(self, event):
        if event.button() == Qt.LeftButton:
            print("左鍵釋放")
        elif event.button() == Qt.RightButton:
            print("右鍵釋放")
        super().mouseReleaseEvent(event)

    def mouseDoubleClickEvent(self, event):
        if event.button() == Qt.LeftButton:
            print("左鍵雙擊")
        elif event.button() == Qt.RightButton:
            print("右鍵雙擊")
        super().mouseDoubleClickEvent(event)

app = QApplication(sys.argv)
window = QWidget()
layout = QVBoxLayout(window)

custom_button = CustomButton("點擊我")
layout.addWidget(custom_button)

window.setLayout(layout)
window.show()
sys.exit(app.exec_())

在這個示例中,我們創建了一個名為 CustomButton 的自定義按鈕類,它繼承自 QPushButton。然后,我們重寫了 mousePressEventmouseReleaseEventmouseDoubleClickEvent 方法,以便在不同的鼠標事件發生時打印相應的信息。最后,我們將自定義按鈕添加到主窗口中并顯示它。

0
虞城县| 甘泉县| 本溪市| 昂仁县| 都江堰市| 凤冈县| 镇巴县| 郴州市| 石城县| 厦门市| 武清区| 米易县| 汾西县| 新营市| 连城县| 黔西县| 伊宁市| 平原县| 汶川县| 都匀市| 高陵县| 甘孜县| 荥经县| 威信县| 小金县| 西充县| 枣阳市| 湖北省| 承德市| 肃北| 博白县| 老河口市| 霍山县| 华阴市| 漳浦县| 兴海县| 贵溪市| 介休市| 昭平县| 呼图壁县| 建平县|