Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 qt4 转换为 qt5。我有以下代码:
mpDV = new QDeclarativeView(QDialog*);
...效果很好。
我不能用 QQuickView 做到这一点,因为它需要一个 QWindow* 作为参数。
有没有快速的解决方法?
谢谢。
抱歉发帖,找到了答案:有一个名为 QWidget::windowHandle() 的新函数(标记为初步),它可以解决问题。
使用 QWidget::createWindowContainer。