如何将 V-Play 中的 qml 文件转换成 python?
How to convert a qml file from V-Play into python?
我有一个 qml 文件,如下所示(由 V-Play 创建):
import VPlayApps 1.0
import QtQuick 2.0
App {
// You get free licenseKeys from https://v-play.net/licenseKey
// With a licenseKey you can:
// * Publish your games & apps for the app stores
// * Remove the V-Play Splash Screen or set a custom one (available with the Pro Licenses)
// * Add plugins to monetize, analyze & improve your apps (available with the Pro Licenses)
//licenseKey: "<generate one from https://v-play.net/licenseKey>"
NavigationStack {
Page {
title: qsTr("My page")
}
AppTextField {
id: appTextField
x: 0
y: 329
width: 256
height: 19
anchors.centerIn: parent
}
AppTextField {
id: appTextField1
x: 0
y: 329
width: 256
height: 19
anchors.verticalCenterOffset: 50
anchors.centerIn: parent
}
Text {
id: text1
x: 0
y: 620
width: 24
height: 20
text: qsTr("A")
font.pixelSize: 25
anchors.horizontalCenter: appTextField1.horizontalCenter
}
AppButton {
id: button
x: 0
y: 575
width: 24
height: 20
text: qsTr("Click me please!")
anchors.horizontalCenter: appTextField1.horizontalCenter
}
}
}
我通过 Qt Designer 创建了许多 PyQt5 应用程序,所以它是一个 .ui 文件,我可以通过 pyuic5
轻松地将其转换为 python 文件,但这是第一次使用V-Play Qt Creator
所以现在我的问题是:
如何将其转换为 python 文件 (.py),如您在代码中所见,我创建了两个输入区域 (AppTextField
),我希望它成为 python 文件,这样我就可以添加将输入区域中的数字相加的函数,我尝试了一些东西,但其中 none 有效,我查看了这个,Developing Python applications in Qt Creator,还有更多, 但他们没有实现我的目标。
我该怎么做?
QML 由 Qt 解释以生成图形项。我不认为你可以将 QML 转换成 Python.
但是,您可以轻松地将此文件集成到 python 脚本中:http://pyqt.sourceforge.net/Docs/PyQt5/qml.html
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
engine.load(QUrl('./main.qml'))
app.exec_()
我有一个 qml 文件,如下所示(由 V-Play 创建):
import VPlayApps 1.0
import QtQuick 2.0
App {
// You get free licenseKeys from https://v-play.net/licenseKey
// With a licenseKey you can:
// * Publish your games & apps for the app stores
// * Remove the V-Play Splash Screen or set a custom one (available with the Pro Licenses)
// * Add plugins to monetize, analyze & improve your apps (available with the Pro Licenses)
//licenseKey: "<generate one from https://v-play.net/licenseKey>"
NavigationStack {
Page {
title: qsTr("My page")
}
AppTextField {
id: appTextField
x: 0
y: 329
width: 256
height: 19
anchors.centerIn: parent
}
AppTextField {
id: appTextField1
x: 0
y: 329
width: 256
height: 19
anchors.verticalCenterOffset: 50
anchors.centerIn: parent
}
Text {
id: text1
x: 0
y: 620
width: 24
height: 20
text: qsTr("A")
font.pixelSize: 25
anchors.horizontalCenter: appTextField1.horizontalCenter
}
AppButton {
id: button
x: 0
y: 575
width: 24
height: 20
text: qsTr("Click me please!")
anchors.horizontalCenter: appTextField1.horizontalCenter
}
}
}
我通过 Qt Designer 创建了许多 PyQt5 应用程序,所以它是一个 .ui 文件,我可以通过 pyuic5
轻松地将其转换为 python 文件,但这是第一次使用V-Play Qt Creator
所以现在我的问题是:
如何将其转换为 python 文件 (.py),如您在代码中所见,我创建了两个输入区域 (AppTextField
),我希望它成为 python 文件,这样我就可以添加将输入区域中的数字相加的函数,我尝试了一些东西,但其中 none 有效,我查看了这个,Developing Python applications in Qt Creator,还有更多, 但他们没有实现我的目标。
我该怎么做?
QML 由 Qt 解释以生成图形项。我不认为你可以将 QML 转换成 Python.
但是,您可以轻松地将此文件集成到 python 脚本中:http://pyqt.sourceforge.net/Docs/PyQt5/qml.html
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
engine.load(QUrl('./main.qml'))
app.exec_()