any updateHi,
I have a window, then I create a new window and want to show it within the first window(with showing title window/minimize window, and it should be movable only within the first window). But set parent does not work.
Qt Code:
QQmlApplicationEngine engine; QQuickWindow *window = (QQuickWindow *)m_visual; QQmlApplicationEngine engine_sub; QQuickWindow *window_sub = (QQuickWindow *)m_visual_sub; m_visual_sub->setParent(m_visual); ((QQuickItem *)m_visual_sub)->setParentItem(window->contentItem());To copy to clipboard, switch view to plain text mode
Thank you so much!
got stuck in the same place
Bookmarks