Button Change Color When Hover/ Pressed PyQt5 #python

preview_player
Показать описание
from PyQt5 import QtWidgets, QtCore

class Window(QtWidgets.QWidget):
def __init__(self):
super().__init__()

layout = QtWidgets.QVBoxLayout(self)

if __name__ == '__main__':

import sys
window = Window()
Рекомендации по теме