我已经使用转发器定义了一个如下所示的网格
Grid {
id: grid
x: 8;y:8
clip: true
smooth: false
rows: 6; columns: 6; spacing: 3
Repeater {
id:table
model:36
Cell { //an item created by me
clip:true
color:"blue"
}
}
}
我想获取网格中任何单元格的位置。为此,在 QML 文件的某处,我写了 x:table.itemAt(3).Center
但是itemAt不起作用。事实上,当我在写表的时候。QT 没有在建议工具提示中显示itemAt。该怎么办?