39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
# coding:utf-8
|
|
import sys
|
|
from PyQt5.QtCore import Qt
|
|
from PyQt5.QtWidgets import QApplication, QWidget, QTreeWidgetItem, QFileSystemModel, QHBoxLayout
|
|
|
|
from qfluentwidgets import TreeWidget, setTheme, Theme, TreeView
|
|
|
|
|
|
class Demo(QWidget):
|
|
""" 树形控件演示 """
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.hBoxLayout = QHBoxLayout(self)
|
|
self.setStyleSheet("Demo{background:rgb(255,255,255)}")
|
|
# setTheme(Theme.DARK)
|
|
|
|
self.view = TreeView(self)
|
|
model = QFileSystemModel()
|
|
model.setRootPath('.')
|
|
self.view.setModel(model)
|
|
|
|
self.hBoxLayout.addWidget(self.view)
|
|
self.hBoxLayout.setContentsMargins(0, 0, 0, 0)
|
|
self.resize(700, 600)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# enable dpi scale
|
|
QApplication.setHighDpiScaleFactorRoundingPolicy(
|
|
Qt.HighDpiScaleFactorRoundingPolicy.PassThrough)
|
|
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
|
|
QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps)
|
|
|
|
app = QApplication(sys.argv)
|
|
w = Demo()
|
|
w.show()
|
|
sys.exit(app.exec_())
|