有什么方法可以在qml文本小部件中显示行尾(newLine)符号?

时间:2020-05-12 14:11:43

标签: qt qml

我在QtQuick应用程序中使用Qml文本小部件。我需要在“文本”小部件中显示行尾符号。

这是我的示例程序

import QtQuick 2.7
import QtQuick.Window 2.2
Window {
visible: true;width: 640;height: 480
Text{
    text: "Is this a\nnew patient?"
}
}

该程序的是->

enter image description here

我想要的是:->

enter image description here

任何帮助都会很棒。

0 个答案:

没有答案