I am currently working with Qt 5.2.1... and I have a (maybe stupid?) question: What is the difference between QQuickView
and QQuickWindow
?
I read the documentation but it is still not clear to me...
I am currently working with Qt 5.2.1... and I have a (maybe stupid?) question: What is the difference between QQuickView
and QQuickWindow
?
I read the documentation but it is still not clear to me...
From the Qt documentation:
So QQuickView is a subclass of QQuickWindow which manages displaying a scene from a QML file and could be used easily like:
For displaying a graphical QML scene in a window you can also use the QQuickWindow class.
Also from the Qt documentation:
So it can be used like: