gpt4 book ai didi

qt - QML ListView : How to disable autoscrolling when new elements inserted?

转载 作者:行者123 更新时间:2023-12-03 15:02:46 38 4
gpt4 key购买 nike

有谁知道,当我在其头部添加一些元素时如何防止向下滚动 QML ListView?我想以类似 Twitter 的方式更新 ListView,当它始终保持其位置并且只能进行显式轻弹时。

最佳答案

其实insert函数完成了这项工作。您可以像这样将其插入顶部或任何所需的位置 modelName.insert(0,{object}); .一个工作示例在这里。

import QtQuick 1.0

Rectangle {
id: rectangle1
width: 320
height: 480

ListModel {
id: cModel
ListElement {
name: "Bill Smith"
number: "555 3264"
}
ListElement {
name: "John Brown"
number: "555 8426"
}
ListElement {
name: "Sam Wise"
number: "555 0473"
}
}
ListView {
id: list_view1
width: rectangle1.width
height: rectangle1.height - 40
anchors.horizontalCenter: parent.horizontalCenter
delegate: Text {
text: name + ": " + number
}
model: cModel
}

Rectangle {
id: rectangle2
width: 320
height: 40
color: "#ffffff"
anchors.top: list_view1.bottom

Text {
id: text1
text: qsTr("Click to add!")
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
font.pixelSize: 16
MouseArea {
id: mouse_area1
anchors.fill: parent
onClicked: addNewItemTop();
}
}
}

function addNewItemTop()
{ var i = Math.random();
cModel.insert(0,{"name" : "New Number", "number":i.toString()});
}
}

关于qt - QML ListView : How to disable autoscrolling when new elements inserted?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8239433/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com