38 lines
1.1 KiB
QML
38 lines
1.1 KiB
QML
import QtQuick
|
|
|
|
Item {
|
|
width: 320
|
|
height: 300
|
|
Column {
|
|
anchors.fill: parent
|
|
Repeater {
|
|
model: [ Text.RichText, Text.StyledText ]
|
|
Item {
|
|
width: 320
|
|
height: 100
|
|
Rectangle {
|
|
id: alignItem
|
|
width: parent.width
|
|
height: 1
|
|
color: "blue"
|
|
anchors.bottom: parent.bottom
|
|
}
|
|
|
|
Text {
|
|
id: textItem
|
|
textFormat: modelData
|
|
font.family: "Arial"
|
|
font.pixelSize: 50
|
|
|
|
text: textFormat == Text.RichText
|
|
? "a犜ण<span style=\"font-size: 25px\">a犜ण</span><span style=\"font-size: 10px\">a犜ण</span>"
|
|
: "<font size=\"3\">a犜ण</font><font size=\"3\">a犜ण</font><font size=\"1\">a犜ण</font>"
|
|
|
|
anchors.baseline: alignItem.top
|
|
anchors.left: alignItem.left
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|