赞
踩
Qt实现的窗口样式默认使用的是当前操作系统的原生窗口样式,在不同操作系统下原生窗口样式显示的风格是不一样的。
可以为每个Widget设置风格:setStyle(QStyle style)
获取当前平台支持的原有QStyle样式QStyleFactory.keys()
对QApplication设置QStyle样式QApplication.setStyle(QStyleFactory.create(“WindowsXP”))
如果其它Widget没有设置QStyle,则默认使用QApplication使用的QStyle。
- import sys
- from PyQt5.QtCore import *
- from PyQt5.QtGui import *
- from PyQt5.QtWidgets import *
-
- class MainWindow(QWidget):
-
- def __init__(self, parent=None):
- super().__init__(parent)
- self.layout = QHBoxLayout()
- label = QLabel("Set Style:",self)
- combo = QComboBox(self)
- combo.addItems(QStyleFactory.keys())
- # 选择当前窗口风格
- index = combo.findText(QApplication.style().objectName(), Qt.MatchFixedString)
- # 设置当前窗口风格
- combo.setCurrentIndex(index)
- combo.activated[str].connect(self.onCurrentIndexChanged)
-
- self.layout.addWidget(label)
- self.layout.addWidget(combo)
-
- self.setLayout(self.layout)
- self.setWindowTitle("Application Style")
- self.resize(300, 100)
-
- def onCurrentIndexChanged(self, style):
- QApplication.setStyle(style)
-
- if __name__ == "__main__":
- app = QApplication(sys.argv)
- window = MainWindow()
- window.show()
-
- sys.exit(app.exec_())
PyQt5使用setWindowFlags(Qt.WindowFlags)函数设置窗口样式。
Qt的窗口类型如下:
Qt.Widget:默认窗口,由最大化、最小化、关闭按钮
Qt.Window:普通窗口,有最大化、最小化、关闭按钮
Qt.Dialog:对话框窗口,有问号和关闭按钮
Qt.Popup:弹出窗口,窗口无边框
Qt.ToolTip:提示窗口,窗口无边框,无任务栏
Qt.SplashScreen:闪屏,窗口无边框,无任务栏
Qt.SubWindow:子窗口,窗口无按钮,但有标题栏
Qt自定义的顶层窗口外观标识:
Qt.MSWindowsFixedSizeDialogHint:窗口无法调整大小
Qt.FrameLessWindowHint:窗口无边框
Qt.CustomWinodwHint:有边框但无标题栏和按钮,不能移动和拖动
Qt.WindowTitleHint:添加一个标题栏和一个关闭按钮
Qt.WindowSystemMenuHint:添加系统目录和一个关闭按钮
Qt.WindowMaximizeButtonHint:激活最大化和关闭按钮,禁止最小化按钮
Qt.WindowMinimizeButtonHint:激活最小化和关闭按钮,禁止最大化按钮
Qt.WindowMinMaxButtonsHint:激活最大化、最小化和关闭按钮
Qt.WindowCloseButtonHint:增加一个关闭按钮
Qt.WindowContextHelpButtonHint:增加问号和关闭按钮
Qt.WindowStaysOnTopHint:窗口始终处于顶层位置
Qt.WindowStaysOnBottomHint:窗口始终处于底层位置
- import sys
- from PyQt5.QtCore import *
- from PyQt5.QtGui import *
- from PyQt5.QtWidgets import *
-
- class MainWindow(QWidget):
-
- def __init__(self, parent=None):
- super().__init__(parent)
- self.setWindowTitle("MainWindow")
- self.setWindowFlags(Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint)
- self.resize(400, 200)
-
- if __name__ == "__main__":
- app = QApplication(sys.argv)
- window = MainWindow()
- window.show()
-
- sys.exit(app.exec_())
自定义一个无边框、铺满整个显示屏的窗口实现如下:
- import sys
- from PyQt5.QtCore import *
- from PyQt5.QtGui import *
- from PyQt5.QtWidgets import *
-
- class MainWindow(QWidget):
-
- def __init__(self, parent=None):
- super().__init__(parent)
- self.setWindowTitle("MainWindow")
- self.setWindowFlags(Qt.WindowMinMaxButtonsHint | Qt.WindowCloseButtonHint)
- self.setStyleSheet("background-color:blue;")
-
- def showMaximized(self):
- # 获取桌面控件
- deskto
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。