其他分享
首页 > 其他分享> > PySide2

PySide2

作者:互联网

ui文件的使用

官方文档:https://doc.qt.io/qtforpython/tutorials/basictutorial/uifiles.html#

直接加载ui文件

ui_file = QFile("mainwindow.ui")
ui_file.open(QFile.ReadOnly)


loader = QUiLoader()
window = loader.load(ui_file)
window.show()

ui文件转化成python类

pyside2-uic mainwindow.ui > ui_mainwindow.py

.qrc文件的使用

官方文档:https://doc.qt.io/qtforpython/tutorials/basictutorial/qrcfiles.html

标签:文件,file,loader,ui,PySide2,io,mainwindow
来源: https://blog.csdn.net/shaynerain/article/details/119411992