PySide2(PyQt5) 实现tab切换及方法详解(不定时更新)
Posted cnblogzaizai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PySide2(PyQt5) 实现tab切换及方法详解(不定时更新)相关的知识,希望对你有一定的参考价值。
更多分享:www.catbron.cn
tab的实现用到的是QTabWidget控件,以下仅做简单的演示
源码:
import sys from PySide2 import QtCore, QtGui, QtWidgets class MainWindow(): def __init__(self): self.window = QtWidgets.QMainWindow() self.initSize(0.6) self.mainWidget = QtWidgets.QWidget() self.mainLayout = QtWidgets.QVBoxLayout() self.mainWidget.setLayout(self.mainLayout) self.window.setCentralWidget(self.mainWidget) self.mainLayout.addWidget(self.loadTabWidgets()) def initSize(self, rate): desktop = QtWidgets.QApplication.desktop() self.screenWidth = desktop.width() * rate self.screenHeight = desktop.height() * rate print("screen width is %d height is %d"%(self.screenWidth, self.screenHeight)) self.window.resize(self.screenWidth, self.screenHeight) def loadTabWidgets(self): tabWidgets = QtWidgets.QTabWidget() widget = QtWidgets.QWidget() layout = QtWidgets.QVBoxLayout() label = QtWidgets.QLabel() label.setText("test one QVBoxLayout item one") layout.addWidget(label) label = QtWidgets.QLabel() label.setText("test one QVBoxLayout item one") layout.addWidget(label) label = QtWidgets.QLabel() label.setText("test one QVBoxLayout item one") layout.addWidget(label) widget.setLayout(layout) tabWidgets.addTab(widget, "test one") label = QtWidgets.QLabel() label.setText("test tab two") tabWidgets.addTab(label, "test two") tabWidgets.show() return tabWidgets def show(self): self.window.show()
if __name__ == ‘__main__‘:
app = QtWidgets.QApplication(sys.argv)
mainWin = MainWindow()
mainWin.show()
sys.exit(app.exec_())
方法
方法名称 | 参数 | 说明 |
---|---|---|
addTab(title,widget) | (tab名称,控件) | 通过传入tab的按钮名称及widget增加一个tab |
相关阅读
- PySide2(PyQt5) 实现tab切换及方法详解(不定时更新)
- Git常用操作整理
- PySide2(PyQt5)系列:label之hello word
- PySide2(PyQt5)常用组件使用说明
- Mac brew install 软件 轻松 解压7z压缩包
- PySide2(PyQt5)根据屏幕大小初始化窗口大小
- SimHash算法详解
- Android8.0及以上Service background start error
- SpringBoot之JPA注解说明
- Lua初探-可见性规则
以上是关于PySide2(PyQt5) 实现tab切换及方法详解(不定时更新)的主要内容,如果未能解决你的问题,请参考以下文章
了解不一致的 cythonized 代码行为 - PyQt5 与 PySide2
PyQt5 & PySide2 / 无法在“”中加载 Qt 平台插件“windows”,即使找到了