https://github.com/arunpkio/QMLTreeView
QML TreeView with custom folder list model in C++
https://github.com/arunpkio/QMLTreeView
Last synced: 14 days ago
JSON representation
QML TreeView with custom folder list model in C++
- Host: GitHub
- URL: https://github.com/arunpkio/QMLTreeView
- Owner: arunpkio
- License: gpl-3.0
- Created: 2017-01-16T04:02:43.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-16T04:11:15.000Z (almost 9 years ago)
- Last Synced: 2024-07-27T21:31:14.187Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 24
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-qt-qml - QMLTreeView - QMl TreeView with custom folder list model in C++. (Misc)
README
# 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
}
```
