加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestCTitleBar.py 2.66 KB
一键复制 编辑 原始数据 按行查看 历史
Irony 提交于 2019-07-23 14:37 . 调整目录结构
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2019年7月15日
@author: Irony
@site: https://pyqt5.com https://github.com/892768447
@email: 892768447@qq.com
@file: TestCTitleBar
@description:
"""
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QDialog
from CustomWidgets.CTitleBar import CTitleBar
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2019'
class TestCTitleBarBase:
def __init__(self, *args, **kwargs):
super(TestCTitleBarBase, self).__init__(*args, **kwargs)
self.resize(500, 400)
# 设置背景透明
self.setAttribute(Qt.WA_TranslucentBackground, True)
# 设置无边框
self.setWindowFlags(self.windowFlags() | Qt.FramelessWindowHint)
layout = QVBoxLayout(self)
layout.setSpacing(0)
# 添加自定义标题栏
layout.addWidget(CTitleBar(self, title='CTitleBar'))
# 底部空白占位
layout.addWidget(QWidget(self, objectName='bottomWidget'))
class TestCTitleBarWidget(QWidget, TestCTitleBarBase):
pass
class TestCTitleBarDialog(QDialog, TestCTitleBarBase):
pass
# 标题栏样式
Style = """
/*标题栏颜色*/
CTitleBar {
background: rgb(65, 148, 216);
}
/*标题栏圆角*/
CTitleBar {
border-top-right-radius: 10px;
border-top-left-radius: 10px;
}
#CTitleBar_buttonClose {
/*需要把右侧的关闭按钮考虑进去*/
border-top-right-radius: 10px;
}
/*底部圆角和背景*/
#bottomWidget {
background: white;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
/*最小化、最大化、还原按钮*/
CTitleBar > QPushButton {
background: transparent;
}
CTitleBar > QPushButton:hover {
background: rgba(0, 0, 0, 30);
}
CTitleBar > QPushButton:pressed {
background: rgba(0, 0, 0, 60);
}
/*关闭按钮*/
#CTitleBar_buttonClose:hover {
color: white;
background: rgb(232, 17, 35);
}
#CTitleBar_buttonClose:pressed {
color: white;
background: rgb(165, 69, 106);
}
"""
if __name__ == '__main__':
import sys
import cgitb
sys.excepthook = cgitb.enable(1, None, 5, '')
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
app.setStyleSheet(Style)
w = TestCTitleBarWidget()
w.show()
# 模态属性
w1 = TestCTitleBarDialog()
w1.setWindowTitle('对话框')
w1.show()
# 不可调整大小
w2 = TestCTitleBarWidget()
w2.setWindowTitle('不可调整大小')
w2.setMinimumSize(400, 400)
w2.setMaximumSize(400, 400)
w2.show()
sys.exit(app.exec_())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化