📌  相关文章
📜  PyQt5 - 改变按下按钮的颜色

📅  最后修改于: 2022-05-13 01:55:15.362000             🧑  作者: Mango

PyQt5 - 改变按下按钮的颜色

在本文中,我们将了解如何使按钮在按下时做出反应。当按钮 get 释放时,它会恢复到原来的颜色,默认情况下,当按钮被单击时,它会变为浅蓝色,尽管我们可以更改此颜色。

为了改变按下按钮的颜色,我们必须改变按下按钮的样式表,下面是与按钮对象一起使用的样式表代码。

QPushButton::clicked
{
background-color : red;
}

下面是实现。

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
  
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating push button widget
        button = QPushButton("Button ", self)
  
        # setting geometry
        button.setGeometry(200, 100, 100, 40)
  
        # adding background color to button
        # and background color to pressed button
        button.setStyleSheet("QPushButton"
                             "{"
                             "background-color : lightblue;"
                             "}"
                             "QPushButton::pressed"
                             "{"
                             "background-color : red;"
                             "}"
                             )
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :