Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
ScrollView in SplitView : How to design Scrollbar in SplitView?
-
Hello,
Trying to design Slitter with Scrollbar in it.. I used ScrollView .
When I used ScrollView inside SplitView then SplitView Properties like Layout miniwidth etc..is not working...
For Example:
anchors.fill: parent
orientation: Qt.Horizontal
ScrollView{
Rectangle{
id:fwindow
width: 150
Layout.minimumWidth: 80 // not working
Layout.maximumWidth: 500//not workingcolor: "lightgreen" Text{ text: "First window" anchors.centerIn: parent } }
}
}