基于QML的Qt文件浏览器

编程入门 行业动态 更新时间:2024-10-28 05:19:17
本文介绍了基于QML的Qt文件浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

使用QFileSystemModel可以很容易地实现文件浏览器.但是listview UI并不漂亮.因此,我想使用QML实现文件浏览器.QML具有模型/视图支持.但是如何在QML中显示文件系统树?任何线索将不胜感激.

It is easy to implement a file browser by using QFileSystemModel. But the listview UI is not pretty. So I want to implement a file browser using QML. the QML has model/view support. But how to display the filesystem tree in QML? Any clue would be appreciated.

推荐答案

自Qt5.5开始,我们提供了 TreeView QML组件,

Since Qt5.5 we have TreeView QML component available,

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")));

更多推荐

基于QML的Qt文件浏览器

本文发布于:2023-06-06 04:40:03,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/534708.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:浏览器   文件   QML   Qt

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!