我可以使用Qt快速UI项目开发真正的产品吗?

时间:2013-12-24 09:26:10

标签: qml

我是Qt Quick开发的新手,我使用的是Qt 5.2。花几个小时来找到最终创建标签视图的方法。 下面是我在gui.qml中的代码:

import QtQuick 2.1
import QtQuick.Window 2.1
import QtQuick.Controls 1.1
import QtQuick.XmlListModel 2.0

Window {

    width: 538 + frame.margins * 2
    height: 360 + frame.margins * 2

    ToolBar {
        id: toolbar
        width: parent.width
    }

    SystemPalette {id: syspal}
    color: syspal.window


    Rectangle {
        anchors.top: toolbar.bottom
        anchors.right: parent.right
        anchors.left: parent.left
        anchors.bottom:  parent.bottom
        anchors.margins: 8

        TabView {
            id:frame
            focus:true

            property int margins: Qt.platform.os === "osx" ? 16 : 0

            height: parent.height - 34
            anchors.right: parent.right
            anchors.left: parent.left
            anchors.margins: margins

            Tab {
                title: "Home"
            }
            Tab {
                title: "Edit"
            }
            Tab {
                title: "View"
            }

            Tab {
                title: "Help"
            }
        }
    }
}

我使用Qt Creator创建一个qt quick ui项目,它只有两个文件,一个是gui.qml,另一个是gui.qmlproject。我可以将它用作真正的产品项目吗?如果是,如何添加我的C ++代码,例如当主窗口弹出时,用我的产品名称替换默认的Windows标题“QtQmlViewer”。

1 个答案:

答案 0 :(得分:2)

您可能还需要另一种类型的项目:QtQuick 2 Application (Built-in elements)This文章可能会有所帮助。此外,QtQuick Controls可能需要另一个启动文件。如果您的应用无法加载QML文件,请尝试this