GitHub - HM281099/QMLTreeView: QML TreeView with custom folder list model in C++

Skip to content

Navigation Menu

Sign in

Appearance settings

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Repository files navigation

QMLTreeView

QMl TreeView with custom folder list model in C++

This application is to demonstrate the use of exposing custom model to QML to be used with the QML TreeView component.

Example Usage in QML:

 TreeView {
        anchors.fill: parent
        TableViewColumn {
            role: "display" //this will show the folder/file name from the model
        }
        model: sandBoxModel
    }

alt tag

About

QML TreeView with custom folder list model in C++

Resources

Readme

License

GPL-3.0 license

Activity

Stars

0 stars

Watchers

0 watching

Forks

0 forks

Releases

No releases published

Languages

  • C++ 80.2%
  • QMake 13.0%
  • QML 6.8%