Hi Friends ,I am facing small Issue, Can u Help Out.....?
-
I am using QtWidget Application.i want use QML application into QtWidget Application.
For That i am using In QtWidget Application The control is QQuickWidget.In QQuickWidget
I want to display the QML Application.
For That what i did is....
QQuickWidget *view=ui->quickwidget;
view->setSource(QUrl("main.qml"));
view->show();
or
ui->quickWidget->setSource(QUrl("main.qml"));In this it is Getting that main.qml(QML Application) is opening.but it is opening another Window.I dont want to open another window.
I want to open the that QuickWidget control onlyyyyyyy...............plz help out to me...
thanks -
@Vinay-Kumar-pusuluri said in Hi Friends ,I am facing small Issue, Can u Help Out.....?:
In this it is Getting that main.qml(QML Application) is opening.but it is opening another Window.I dont want to open another window.
I want to open the that QuickWidget control onlyInside main.qml, your top-level item is probably
Window
orApplicationWindow
. Modify main.qml and replace the window with aRectangle
.See
-
Yes,It's Working ThankYou.....