0

问 Flickable.contentY 的界限的正确方法是什么?我需要它作为滚动条。

通过实验我发现

offsetY <= contentY <= offsetY + contentHeight - height

其中 offsetY 可以计算为

var offsetY = contentY-Math.round(visibleArea.yPosition*contentHeight)

offsetY 在应用程序开始时为零,并且似乎是恒定的,除非调整 Flickable 的大小。

这个公式通常有效,但可能应该有一个专门的函数。

4

1 回答 1

5

我很容易地做了一个滚动条,没有偏移:

// ScrollBar.qml
import QtQuick 2.0

Rectangle {
    id: scrollbar;
    color: "#3C3C3C";
    visible: (flicker.visibleArea.heightRatio < 1.0);
    property Flickable flicker : null;
    width: 20;
    anchors {
        top: flicker.top;
        right: flicker.right;
        bottom: flicker.bottom;
    }

    Rectangle {
        id: handle;
        height: (scrollbar.height * flicker.visibleArea.heightRatio);
        color: "#5E5E5E";
        border {
            width: 1;
            color: "white";
        }
        anchors {
            left: parent.left;
            right: parent.right;
        }

        Binding { // Calculate handle's x/y position based on the content position of the Flickable
            target: handle;
            property: "y";
            value: (flicker.visibleArea.yPosition * scrollbar.height);
            when: (!dragger.drag.active);
        }
        Binding { // Calculate Flickable content position based on the handle x/y position
            target: flicker;
            property: "contentY";
            value: (handle.y / scrollbar.height * flicker.contentHeight);
            when: (dragger.drag.active);
        }
        MouseArea {
            id: dragger;
            anchors.fill: parent;
            drag {
                target: handle;
                minimumX: handle.x;
                maximumX: handle.x;
                minimumY: 0;
                maximumY: (scrollbar.height - handle.height);
                axis: Drag.YAxis;
            }
        }
    }
}

像这样使用它:

Flickable {
    id: myFlick;
}
ScrollBar { 
    flicker: myFlick;
}

它可以用鼠标移动,并在 Flickable 滚动时自动移动。

于 2013-05-28T11:50:25.337 回答