Answers for "change colour of button on click PyQt5"

1

pyqt5 change button color

self.pushButton.setStyleSheet("background-color: red")
Posted by: Guest on April-23-2020
0

pyqt change button text color

class Window(QMainWindow):
    def __init__(self):
        super().__init__()
        self.init_me()

    def init_me(self):
        self.setGeometry(600, 250, 750, 500)
        self.setStyleSheet("background:gray")  <----
        # or
        # self.setStyleSheet("background:rgb(r:int,g:int,b:int)")  <----

        self.show()
        
# to change the color of the text:		<----
# self.setStyleSheet("color:rgb(...)")
# or to change both at the same time:
# self.setStyleSheet("color: rgb(...);background: rgb(...)")
# you can do that with any QWidget object or class that inherits QWidget, <----
# eg. QPushButton, QLabel, ...
Posted by: Guest on September-18-2020

Code answers related to "change colour of button on click PyQt5"

Python Answers by Framework

Browse Popular Code Answers by Language