本文連接:https://blog.csdn.net/chyuanrufeng/article/details/54691998
問題描述 :QML TextInput輸入內容超過TextInput的大小.net
當輸入過多的字符串時,會出現內容超過TextInput的大小,字符串出如今TextInput的控件外面的現象,如圖blog
解決方式
:ip
TextInput {
anchors.fill: parent
id : userInput
font.pointSize: 15
verticalAlignment: Text.AlignVCenter
clip: true //設置此屬性
}
1
2
3
4
5
6
7
效果以下字符串
————————————————
版權聲明:本文爲CSDN博主「緣如風」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處連接及本聲明。
原文連接:https://blog.csdn.net/chyuanrufeng/article/details/54691998cli