如何在QML中以降序在GridView中显示图像?

时间:2019-03-20 09:51:09

标签: image gridview qml display

如何在GridView中按降序显示图像?

我需要显示的图像来自我的串行摄像机捕获图像的本地目录,我要做的是在GridView中显示将添加到本地文件夹中的最新图像。

这是我当前的代码:

Rectangle {
visible: true

FolderListModel {
    id: folderModel
    nameFilters: ["*.jpg"]
    folder: "file:///E:/Camera-pics/camera"
}

Component {
    id: fileDelegate

    Image {
        width: gridView.cellWidth - 5
        height: gridView.cellHeight - 5
        smooth: true
        source: fileURL
    }
}

GridView {
    id: gridView

    anchors {
        fill: parent
        leftMargin: 5
        topMargin: 5
    }

    cellWidth: width / 2
    cellHeight: height / 2

    model: folderModel
    delegate: fileDelegate

}
}

请帮助我,谢谢您

1 个答案:

答案 0 :(得分:0)

jQuery('#navbar a').css('width', '20px'); 上尝试sortReversed

FolderListModel

如果需要,您还可以指定sortField以按日期,名称等进行排序