Can use Qt Quick UI in Qt Designer
-
Hi.
I want to incorporate the screen created in Qt Quick UI into Qt Designer Form.
This is because I want to divert the parts used in QML.
If I can't do that, I will use the Qt Designer Form to create it again, so I am not too particular.
Is there any way to do that? -
@Knj-Tkm said in Can use Qt Quick UI in Qt Designer:
I get error [undefined reference to `__imp__ZN12QQuickWidgetC1EP7QWidget'], when I set source.
Add the Qt Quick Widgets module to your project.
If you have a .pro file, add this line:
QT += quickwidgets
(see https://doc.qt.io/qt-5/qtquickwidgets-module.html#details ) -
@Knj-Tkm said in Can use Qt Quick UI in Qt Designer:
I get error [undefined reference to `__imp__ZN12QQuickWidgetC1EP7QWidget'], when I set source.
Add the Qt Quick Widgets module to your project.
If you have a .pro file, add this line:
QT += quickwidgets
(see https://doc.qt.io/qt-5/qtquickwidgets-module.html#details )