属性
Text项目的style
属性可以设置文本的样式。
支持的文本样式有:
Text.Normal
(默认)Text.Outline
Text.Raised
Text.Sunken
示例
import QtQuickRow{spacing: 10padding: 10Text {font.pointSize: 40text: "Normal"}Text {font.pointSize: 40text: "Raised"color: "#FFAABB"style: Text.RaisedstyleColor: "black"}Text {font.pointSize: 40text: "Outline"color: "white"style: Text.OutlinestyleColor: "red"}Text{font.pointSize: 40text: "Sunken"color: "lightgrey"style: Text.SunkenstyleColor: "black"}
}