使用 QFileSystemModel 很容易实现文件浏览器。但是listview UI 并不漂亮。所以我想用QML实现一个文件浏览器。QML 具有模型/视图支持。但是如何在 QML 中显示文件系统树呢?任何线索将不胜感激。
问问题
9208 次
2 回答
5
从 Qt5.5 开始,我们有TreeView
QML 组件可用,
main.qml
:
import QtQuick.Controls 1.4
TreeView {
anchors.fill: parent
TableViewColumn {
title: "Name"
role: "fileName"
width: 300
}
model: my_model
}
main.cpp
:
QFileSystemModel model;
model.setRootPath("/");
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty("my_model", &model);
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
于 2015-10-12T09:18:13.753 回答