Files
qt-creator/src/plugins/qmlprofiler/Label.qml

24 lines
424 B
QML
Raw Normal View History

2011-03-11 12:22:57 +01:00
import QtQuick 1.1
Item {
property alias text: txt.text
height: 50
width: 150 //### required, or ignored by positioner
Text {
id: txt;
x: 5
font.pixelSize: 12
color: "#232323"
anchors.verticalCenter: parent.verticalCenter
}
Rectangle {
height: 1
width: parent.width
color: "#cccccc"
anchors.bottom: parent.bottom
}
}