PyQt5-Label背景颜色和文本颜色的设置

P y Q t 5 − L a b e l 背 景 颜 色 和 文 本 颜 色 的 设 置 PyQt5-Label背景颜色和文本颜色的设置 PyQt5Label

        w = QLabel("慧明抚顺养老管理平台")
        w.setAlignment(Qt.AlignCenter)
        # w.setStyleSheet('color: yellow')
        w.setStyleSheet("background-color: RoyalBlue ")

        w1 = QLabel("辽宁慧明智能居家养老服务中心")
        w1.setAlignment(Qt.AlignCenter)
        w1.setStyleSheet("background-color: CornflowerBlue")

在这里插入图片描述

你可能感兴趣的:(PyQt5-Label背景颜色和文本颜色的设置)