如何动态更改 Flickable 的 contentHeight?
How can I dynamically change a Flickable's contentHeight?
我有一个带有网格的简单 Flickable。使用滚轮,我将对象附加到网格。我要做的是在 Grid 元素超过默认 contentHeight 后更改 Flickable 的 contentHeight。
这是我的代码:
Flickable {
property real flickHeight: Screen.height * 2
width: Screen.width
height: Screen.height
contentWidth: Screen.width
contentHeight: flickHeight
MouseArea {
anchors.fill: parent
onWheel: {
gridModel.append({ _color: "black" })
var cheight = (gridModel.count * 180 + gridModel.count * 2)
if(cheight > parent.flickHeight) {
parent.flickHeight = cheight
}
console.log("Flickable.flickHeight: " + parent.flickHeight) // Prints qml: Flickable.flickHeight: undefined
}
} // MouseArea
Grid {
ListModel {
id: gridModel
ListElement { _color: "red" }
ListElement { _color: "blue" }
ListElement { _color: "green" }
ListElement { _color: "darkred" }
ListElement { _color: "darkblue" }
ListElement { _color: "darkgreen" }
} // ListModel
id: grid
columns: 2
spacing: 2
Repeater {
model: gridModel
delegate: Rectangle {
width: 180
height: 180
color: _color
} // Delegate
} // Repeater
} // Grid
} // Flickable
除了当我试图改变 contentHeight 的高度时,一切都很好。 onWheel 函数打印出 "qml: Flickable.flickHeight: undefined"。我没有正确使用属性吗?为什么我得到 "undefined"?
问题是因为您的 MouseArea
不是 Flickable
的直系子代,而是 Flickable.contentItem
的直系子代。所以你不能在这种情况下使用 parent
因为它引用了不同的元素。一个快速的解决方案是使用 ids:
Flickable {
id: flickable
...
MouseArea {
anchors.fill: parent
onWheel: {
...
console.log("Flickable.flickHeight: " + flickable.flickHeight)
}
} // MouseArea
...
}
我有一个带有网格的简单 Flickable。使用滚轮,我将对象附加到网格。我要做的是在 Grid 元素超过默认 contentHeight 后更改 Flickable 的 contentHeight。
这是我的代码:
Flickable {
property real flickHeight: Screen.height * 2
width: Screen.width
height: Screen.height
contentWidth: Screen.width
contentHeight: flickHeight
MouseArea {
anchors.fill: parent
onWheel: {
gridModel.append({ _color: "black" })
var cheight = (gridModel.count * 180 + gridModel.count * 2)
if(cheight > parent.flickHeight) {
parent.flickHeight = cheight
}
console.log("Flickable.flickHeight: " + parent.flickHeight) // Prints qml: Flickable.flickHeight: undefined
}
} // MouseArea
Grid {
ListModel {
id: gridModel
ListElement { _color: "red" }
ListElement { _color: "blue" }
ListElement { _color: "green" }
ListElement { _color: "darkred" }
ListElement { _color: "darkblue" }
ListElement { _color: "darkgreen" }
} // ListModel
id: grid
columns: 2
spacing: 2
Repeater {
model: gridModel
delegate: Rectangle {
width: 180
height: 180
color: _color
} // Delegate
} // Repeater
} // Grid
} // Flickable
除了当我试图改变 contentHeight 的高度时,一切都很好。 onWheel 函数打印出 "qml: Flickable.flickHeight: undefined"。我没有正确使用属性吗?为什么我得到 "undefined"?
问题是因为您的 MouseArea
不是 Flickable
的直系子代,而是 Flickable.contentItem
的直系子代。所以你不能在这种情况下使用 parent
因为它引用了不同的元素。一个快速的解决方案是使用 ids:
Flickable {
id: flickable
...
MouseArea {
anchors.fill: parent
onWheel: {
...
console.log("Flickable.flickHeight: " + flickable.flickHeight)
}
} // MouseArea
...
}