Label QML Type

A text label. 更多...

导入语句: import QtQuick.Controls 1.4
Since: Qt 5.1
继承:

Text

详细描述

In addition to the normal Text type, Label follows the font and color scheme of the system. Use the text property to assign a text to the label. For other properties check Text .

A simple label looks like this:

Label {
    text: "Hello world"
}
					

You can use the properties of Text to change the appearance of the text as desired:

Label {
    text: "Hello world"
    font.pixelSize: 22
    font.italic: true
    color: "steelblue"
}
					

另请参阅 Text , TextField ,和 TextEdit .