qml Text换行

 Text{
     width: 170
     height: 40
     text: "111111111111111111112222233"
     color: "#7882A0"
     maximumLineCount: 2	//最大换行数
     elide: Text.ElideRight		//省略号位置
     wrapMode: Text.WordWrap	//按词换行(Text.WrapAnywhere ---》任何位置换行)
 }

你可能感兴趣的:(qt,c++)