translationY相当于实际影响布局

时间:2014-10-28 19:32:34

标签: qt blackberry blackberry-10 cascade blackberry-cascades

根据translationY的定义:The translation is mostly useful for animations as it doesn't affect the actual laid out position of the visual node. This translation is added after the node has been laid out so it doesn't affect layout in any way

是否存在实际影响视觉节点位置的任何属性?

我想要的是从顶部边框开始的标签文本。如果我使用translationY,它会触及顶部边框,但标签的大小保持不变。

1 个答案:

答案 0 :(得分:0)

您的问题在细节上很细,但如果您使用AbsoluteLayoutAbsoluteLayoutProperties的成员会影响可视节点的布局位置,如下面的QML:

Container {
    layout: AbsoluteLayout {}

    Label {
        text: "Label"
        layoutProperties: AbsoluteLayoutProperties {
            positionX: 100
            positionY: 100   
        }               
    }   
}