我正在我的应用程序中实现 stackview。
SwipeView {
id: swipeView
anchors.fill: parent
currentIndex: showfooter.currentIndex
DashboardListView{
id:dashboard
}
Settings{
id:setting
}
Cart{
id:cart
}
}
StackView {
id: stackView
initialItem: Pane {
id: pane
}
}
当我使用 push 方法从 DashboardListView 加载其他屏幕(如 SightDescription.qml)并在该屏幕上的某个位置单击它的 DashboardListView 调用槽时。DashboardListView 屏幕控件正在获得 onclick 信号。是否有任何与我需要做的堆栈视图相关的设置,我阅读了堆栈视图的文档,但没有找到任何限制这种行为的东西。