使用来自另一个 QML 文件的 QML 对象
Use QML object from another QML file
假设我有以下文件:
main.py
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
engine.quit.connect(app.quit)
engine.load("qml/mainMenu.qml")
sys.exit(app.exec())
main.qml
ApplicationWindow{
width: 1200
height: 800
...
CustomObject{...}
customobject.qml
CustomObject{...}
现在如您所见,我想在 main.qml 中使用 CustomObject。我找不到如何导入(或任何我必须做的)这两个文件,所以我可以这样做。
如果 main.qml 与 CustomObject 位于同一目录中,则根本不需要导入任何内容。如果它不起作用,那是因为您需要将 customobject.qml 重命名为 CustomObject.qml。参见docs。至少第一个字母必须大写,并且对象的名称与文件名相同。 (虽然这实际上可以在 qmldir
文件中被覆盖)。
假设我有以下文件:
main.py
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
engine.quit.connect(app.quit)
engine.load("qml/mainMenu.qml")
sys.exit(app.exec())
main.qml
ApplicationWindow{
width: 1200
height: 800
...
CustomObject{...}
customobject.qml
CustomObject{...}
现在如您所见,我想在 main.qml 中使用 CustomObject。我找不到如何导入(或任何我必须做的)这两个文件,所以我可以这样做。
如果 main.qml 与 CustomObject 位于同一目录中,则根本不需要导入任何内容。如果它不起作用,那是因为您需要将 customobject.qml 重命名为 CustomObject.qml。参见docs。至少第一个字母必须大写,并且对象的名称与文件名相同。 (虽然这实际上可以在 qmldir
文件中被覆盖)。