1
0
mirror of https://github.com/jaredtao/TaoQuick.git synced 2025-01-31 21:22:58 +08:00
2020-10-21 00:12:00 +08:00

42 lines
1.1 KiB
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
import TaoQuick 1.0
Item {
anchors.fill: parent
Column {
anchors.centerIn: parent
spacing: 10
CusLabel {
text: qsTr("Hello, TaoQuick") + trans.transString
wrapMode: Label.WordWrap
width: 400
font.pixelSize: 12
}
CusLabel {
text: qsTr("Hello, TaoQuick") + trans.transString
wrapMode: Label.WordWrap
width: 400
font.pixelSize: 14
}
CusLabel {
text: qsTr("Hello, TaoQuick") + trans.transString
wrapMode: Label.WordWrap
width: 400
font.pixelSize: 16
}
CusLabel {
text: qsTr("Hello, TaoQuick") + trans.transString
wrapMode: Label.WordWrap
width: 400
font.pixelSize: 18
}
CusLabel {
text: qsTr("Hello, TaoQuick") + trans.transString
wrapMode: Label.WordWrap
width: 400
font.pixelSize: 20
}
}
}