我想禁用或使TextArea
透明的背景,但不幸的是它不起作用(始终保持白色)。
import QtQuick 2.0
import QtQuick.Controls 1.0
Rectangle {
width: 360
height: 360
color: "grey"
TextArea {
text: qsTr("Hello World")
anchors.centerIn: parent
backgroundVisible: false
}
}
如果我将backgroundVisible
设置为true
或false
,则不会改变任何内容!我做错了什么?有人有解决方案吗(也可能是c ++修复)?
提前致谢。