如何以编程方式将 ScrollView 滚动到底部?

Jac*_*ieg 3 qt qml qtquick2 qtquickcontrols2

我一直在尝试创建一个使用 Qt Quick Controls 2 以编程方式滚动到ScrollView底部的函数。我尝试了各种选项,但我在网上找到的大部分支持都是指 Qt Quick Controls 1,而不是 2。这就是我试过了:

import QtQuick 2.8
import QtQuick.Controls 2.4

ScrollView {
    id: chatView

    anchors.top: parent.top
    anchors.left: parent.left
    anchors.right: parent.right
    anchors.bottom: inputTextAreaContainer.top

    function scrollToBottom() {
        // Try #1
//      chatView.contentItem.contentY = chatBox.height - chatView.contentItem.height
//      console.log(chatView.contentItem.contentY)

        // Try #2
//      flickableItem.contentY = flickableItem.contentHeight / 2 - height / 2
//      flickableItem.contentX = flickableItem.contentWidth / 2 - width / 2

        // Try #3
        chatView.ScrollBar.position = 0.0 // Tried also with 1.0
    }

    TextArea {
        id: chatBox
        anchors.fill: parent
        textFormat: TextArea.RichText
        onTextChanged: {
            // Here I need to scroll
            chatView.scrollToBottom()
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

有谁知道如何使用 Qt Quick Controls 2 来实现这一点?如果没有,有没有人有这种方法的替代方案?

sco*_*nov 5

原因

您正在尝试将 的位置设置ScrollBar1.0

chatView.ScrollBar.position = 0.0 // Tried also with 1.0
Run Code Online (Sandbox Code Playgroud)

但是,您没有考虑它的大小。

解决方案

当您设置其位置时,请考虑 的大小,ScrollBar如下所示:

chatView.ScrollBar.vertical.position = 1.0 - chatView.ScrollBar.vertical.size
Run Code Online (Sandbox Code Playgroud)

我是如何想出这个解决方案的?

我很好奇Qt本身是如何解决这个问题的,所以我看了一下是如何QQuickScrollBar::increase()实现的,我看到了这一行:

setPosition(qMin<qreal>(1.0 - d->size, d->position + step));
Run Code Online (Sandbox Code Playgroud)

然后我采用了第一个参数qMin,即1.0 - d->size,解决方案很清楚。

例子

由于你没有提供MCE,我自己写了一个。我希望您能根据您的具体情况进行调整。这里是:

import QtQuick 2.8
import QtQuick.Controls 2.4
import QtQuick.Layouts 1.12

ApplicationWindow {
    width: 480
    height: 640
    visible: true
    title: qsTr("Scroll To Bottom")

    ColumnLayout {
        anchors.fill: parent

        ScrollView {
            id: scrollView

            Layout.fillWidth: true
            Layout.fillHeight: true

            function scrollToBottom() {
                ScrollBar.vertical.position = 1.0 - ScrollBar.vertical.size
            }

            contentWidth: children.implicitWidth
            contentHeight: children.implicitHeight
            ScrollBar.vertical.policy: ScrollBar.AlwaysOn
            clip: true

            ColumnLayout {

                Layout.fillWidth: true
                Layout.fillHeight: true

                Repeater {
                    model: 50

                    Label {
                        text: "Message: " + index
                    }
                }
            }
        }

        TextField {
            Layout.fillWidth: true
        }
    }

    Component.onCompleted: {
        scrollView.scrollToBottom()
    }
}
Run Code Online (Sandbox Code Playgroud)

结果

该示例产生以下结果:

带有列表的窗口,滚动到底部