Flickable
을 사용하여 내 응용 프로그램에서 내용을 스크롤 할 수있게하려고했습니다. 이제 내용을 스크롤 할 수 있지만 내용이 맨 위 내용을 숨 깁니다.Qml Flickable 덮어 쓰기 내용
코드 :
Flickable {
anchors.top: pageMessagesHeader.bottom
anchors.topMargin: 20
boundsBehavior: Flickable.DragOverBounds
contentHeight: contentItem.childrenRect.height
contentWidth: contentItem.childrenRect.width
height: 500
width: 400
ScrollBar.vertical: ScrollBar {}
Rectangle {
color: "white"
height: 1000
width: 400
id: listMessages
}
}
가능한 [ListView를 초과하는 ListView] (http://stackoverflow.com/questions/40482081/listview-exceeding-parent-area) – BaCaRoZzo