Qt 6.11 is out! See what's new in the release
blog
How to embed QTableView to QML-based GUI
QML and Qt Quick
5
Posts
4
Posters
5.0k
Views
1
Watching
-
Hi
I have QML-based application. But now I need something like TableView. But there is not TableView in QML. So I think I should use QTableView. How to embed QTableView to QML-based GUI? -
You can directly insert it from C++ code via QGraphicsProxyWidget or you can create declarative plugin.
-
Denis, thank you.
-
passing