1 Star 0 Fork 0

liyanqing1987/tool_bar

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_color 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
#!/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()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liyanqing1987/tool_bar.git
git@gitee.com:liyanqing1987/tool_bar.git
liyanqing1987
tool_bar
tool_bar
master

搜索帮助