TextFitProperties用法

时间:2013-12-04 08:55:35

标签: qml blackberry-10 blackberry-cascades

Blackberry Cascades 10.2

import bb.cascades 1.2

Page {
Container {
    layout: AbsoluteLayout {

    }
    Label {
        preferredWidth: 200
        preferredHeight: 150


        layoutProperties: AbsoluteLayoutProperties {
            positionX: 20
            positionY: 20
        }
        text: 'ThisIsALongTextInALabelThatHasMoreTextThanAPreviousLabel'
        textFit {
            mode: LabelTextFitMode.FitToBounds
            minFontSizeValue: 1
            maxFontSizeValue: 24
        }
    }
}
}

文字在尾部被截断。它不应该符合标签的界限吗?

0 个答案:

没有答案