QML学习
main.qml
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
ScrollView {
id: scrollView
width: 200
height: 200
anchors.centerIn: parent
clip: true
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
ScrollBar.horizontal.policy: ScrollBar.AlwaysOn
background: Rectangle {
color: "yellow"
}
TextEdit {
id: textEdit
anchors.centerIn: parent
text: "ScrollView + TextEdit"