符
是否可以在 TextField 组件的文本属性中插入换行符:
import QtQuick 2.6
import QtQuick.Controls 1.2
import QtQuick.Window 2.2
Window {
visible: true
width: 640
height: 480
Grid {
TextField {
text: "Textnhere"
}
}
}
在文本字段中打印空白而不是换行
根据文档:
文本字段用于接受一行文本输入。[...]
因此,该项目中不能有多个行。您必须使用其他项目,如文本区域
import QtQuick 2.6
import QtQuick.Controls 1.2
import QtQuick.Window 2.2
Window {
visible: true
width: 640
height: 480
Grid {
TextArea {
text: "Textnshere"
}
}
}