代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
################################
# File Name : test_color
# Author : liyanqing.1987
# Created On : 2022-08-11 21:10:32
# Description :
################################
import os
import sys
import getpass
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QPushButton, QLabel, QColorDialog, QApplication
from PyQt5.QtGui import QPalette
# Solve some unexpected warning message.
if 'XDG_RUNTIME_DIR' not in os.environ:
user = getpass.getuser()
os.environ['XDG_RUNTIME_DIR'] = '/tmp/runtime-' + str(user)
if not os.path.exists(os.environ['XDG_RUNTIME_DIR']):
os.makedirs(os.environ['XDG_RUNTIME_DIR'])
os.chmod(os.environ['XDG_RUNTIME_DIR'], 0o777)
class QColorDialogDemo(QWidget):
def __init__(self):
super(QColorDialogDemo, self).__init__()
self.initUI()
def initUI(self):
layout = QVBoxLayout()
self.colorButton = QPushButton('设置颜色')
self.colorButton.clicked.connect(self.getColor)
layout.addWidget(self.colorButton)
self.colorButton1 = QPushButton('设置背景颜色')
self.colorButton1.clicked.connect(self.getBGColor)
layout.addWidget(self.colorButton1)
self.colorLabel = QLabel('Hello,测试颜色例子')
layout.addWidget(self.colorLabel)
self.setLayout(layout)
self.setWindowTitle('Color Dialog例子')
self.resize(300, 150)
def getColor(self):
color = QColorDialog.getColor()
p = QPalette()
p.setColor(QPalette.WindowText, color)
self.colorLabel.setPalette(p)
def getBGColor(self):
color = QColorDialog.getColor()
p = QPalette()
p.setColor(QPalette.Window, color)
self.colorLabel.setAutoFillBackground(True)
self.colorLabel.setPalette(p)
################
# Main Process #
################
def main():
app = QApplication(sys.argv)
main = QColorDialogDemo()
main.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。