我使用 GridView 来显示 ListModel。最初我将 cellWidth 设置为:
cellWidth = grid.width/3
创建一个 3 列网格。然后我想将列数更改为 2,所以我将 cellWidth 设置为:
cellWidth = grid.width/2
GridView 的显示发生了变化。但是当我调整容器的桌面窗口大小时,gridview 中的单元格将不再改变大小。
我应该怎么做才能使它正确?
请看下面的代码:
import QtQuick 2.1
import QtQuick.Controls 1.0
import QtQuick.Window 2.0
ApplicationWindow {
title: qsTr("Hello World")
width: 640
height: 480
menuBar: MenuBar {
Menu {
title: qsTr("File")
MenuItem {
text: qsTr("2 columns")
onTriggered: grid.cellWidth = grid.width/2;
}
MenuItem {
text: qsTr("3 columns")
onTriggered: grid.cellWidth = grid.width/3;
}
}
}
GridView {
id: grid
anchors.fill: parent
cellWidth: width / 3;
cellHeight: 300;
model: ListModel {
ListElement {
name: "Apple"
cost: 2.45
}
ListElement {
name: "Orange"
cost: 3.25
}
ListElement {
name: "Banana"
cost: 1.95
}
}
delegate : Rectangle {
//anchors.fill: parent
width: grid.cellWidth
height: grid.cellHeight
border.color: "green"
border.width: 2
color: "red"
}
}
}