我是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”。