qml 文本字段中的换行符,文本属性不起作用



是否可以在 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"
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新