qml 在ListView中使用3个Button然后把3个Button存在数组里
时间: 2024-06-10 09:10:51 浏览: 168
下面是一个简单的 QML 示例,演示如何在 ListView 中使用三个 Button 并将它们存储在数组中:
```
import QtQuick 2.0
import QtQuick.Controls 2.5
ApplicationWindow {
title: "Button List Example"
width: 400
height: 400
property var buttonList: []
ListView {
id: listView
anchors.fill: parent
model: 3 // 三个项目
delegate: Component {
Button {
id: button
text: "Button " + (index + 1)
onClicked: {
buttonList.push(button)
console.log("Button " + (index + 1) + " added to list")
}
}
}
}
}
```
在这个示例中,我们使用了一个 ListView 和一个 buttonList 数组来存储 Button 对象。每个 Button 都有一个 onClicked 信号处理程序,它将该 Button 添加到 buttonList 数组中。这样,当用户单击任何一个 Button 时,该 Button 就会被添加到数组中。
要访问 buttonList 数组中的 Button,只需使用它们的索引即可。例如,要访问第一个 Button,只需使用 buttonList[0] 即可。
阅读全文