import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
SwipeView {
id: swipeView
anchors.fill: parent
currentIndex: tabBar.currentIndex
Page1 {
}
Page1 {
}
Page1 {
}
}
footer: TabBar {
id: tabBar
currentIndex: swipeView.currentIndex
TabButton {
text: qsTr("First")
}
TabButton {
text: qsTr("Second")
}
TabButton {
text: qsTr("3")
}
}
}
qml之SwipeView
最新推荐文章于 2024-08-23 10:20:50 发布
本文介绍了一个使用Qt Quick实现的简单示例,该示例展示了如何结合SwipeView和TabBar来创建带有多个页面和底部标签栏的应用程序。代码中包含了必要的Qt模块导入,并通过具体的组件设置说明了每个部分的功能。
摘要由CSDN通过智能技术生成