中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
磴口县| 彝良县| 晋中市| 龙南县| 诸暨市| 甘孜| 宁国市| 合水县| 商洛市| 鄂州市| 鸡东县| 会理县| 桦甸市| 濮阳市| 东方市| 甘南县| 马关县| 平陆县| 泰州市| 峡江县| 东乡县| 枣庄市| 兰溪市| 大石桥市| 洛阳市| 犍为县| 莎车县| 布拖县| 佛山市| 亳州市| 庄浪县| 襄樊市| 阿城市| 荥经县| 监利县| 阿拉善右旗| 囊谦县| 安仁县| 兴和县| 江油市| 家居|