PyQt5 findChild返回None
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt5 findChild返回None相关的知识,希望对你有一定的参考价值。
我看到其他人问这个问题,但没有我尝试过的工作。我正在使用PyQt 5.10.1。
这是python代码:
app = QGuiApplication(sys.argv)
view = QQuickView()
view.setSource(QUrl("module/Layout.qml"))
print(view.rootContext())
print(view.findChild(QObject, 'launcherComponent'))
import pdb; pdb.set_trace()
sys.exit(app.exec())
这是QML代码:
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Window 2.2
import "calendar/resources" as CalendarComponent
import "weather/resources" as WeatherComponent
import "launcher/resources" as LauncherComponent
import Test 1.0
import Weather 1.0
import Calendar 1.0
import Launcher 1.0
ApplicationWindow {
id: appId
width: Screen.desktopAvailableWidth
height: Screen.desktopAvailableHeight
visible: true
modality: Qt.ApplicationModal
flags: Qt.Dialog
title: qsTr("NarcisseOS")
color: "black"
LauncherComponent.LauncherComponent {
id: launcherComponentId
objectName: launcherComponent
height: parent.height
width: parent.width
anchors.centerIn: parent
}
}
我尝试了我想到的一切。但是这个findChild函数只返回None。
我试图重新安装PyQt5。我试图将objectName属性放在一个Rectangle对象中,我想可能是一个更通用的属性。它都没有奏效。
谢谢您的帮助。
朱利安
答案
您的代码有几个错误:
objectName
属性必须是一个字符串:
LauncherComponent.LauncherComponent {
id: launcherComponentId
objectName: "launcherComponent"
height: parent.height
width: parent.width
anchors.centerIn: parent
}
- 另一个错误是,如果你打算使用
ApplicationWindow
你不应该使用QQuickView
,因为ApplicationWindow
创建了一个顶层和QQuickView
所以你将有2个toplevels你正在寻找QQuickView
的儿子,但不是在ApplicationWindow
儿童,所以我建议你将.py修改为:
import sys
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtQml import *
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
engine.load(QUrl("module/Layout.qml"))
if len(engine.rootObjects()) == 0:
sys.exit(-1)
print(engine.rootObjects()[0].findChild(QObject, 'launcherComponent'))
sys.exit(app.exec_())
也就是说,你必须使用QQmlApplicationEngine
。
以上是关于PyQt5 findChild返回None的主要内容,如果未能解决你的问题,请参考以下文章