20 lines
348 B
QML
20 lines
348 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
import QtQuick.Layouts
|
||
|
|
|
||
|
|
Item {
|
||
|
|
width: 100
|
||
|
|
height: 30
|
||
|
|
property var text: ""
|
||
|
|
clip: true
|
||
|
|
Label {
|
||
|
|
text: parent.text
|
||
|
|
anchors.centerIn: parent
|
||
|
|
font.pixelSize: 15
|
||
|
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
|
verticalAlignment: Text.AlignHCenter
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|