30 lines
685 B
QML
30 lines
685 B
QML
import QtQuick
|
|
|
|
Item {
|
|
width: 320
|
|
height: 160
|
|
Item {
|
|
width: 320
|
|
height: 100
|
|
Rectangle {
|
|
id: alignItem
|
|
width: parent.width
|
|
height: 1
|
|
color: "blue"
|
|
anchors.bottom: parent.bottom
|
|
}
|
|
|
|
TextEdit {
|
|
id: textItem
|
|
textFormat: TextEdit.RichText
|
|
font.family: "Arial"
|
|
font.pixelSize: 50
|
|
|
|
text: "a犜ण<span style=\"font-size: 25px\">a犜ण</span><span style=\"font-size: 10px\">a犜ण</span>"
|
|
|
|
anchors.baseline: alignItem.top
|
|
anchors.left: alignItem.left
|
|
}
|
|
}
|
|
}
|