答案 0 :(得分:0)
TextField
至少有两种类型-QtQuick2和QtControls2。假设您使用了最后一个控件,则可以根据需要自定义控件,包括线条颜色。例如:
TextField {
anchors.centerIn: parent
background: Item {
implicitWidth: 200
implicitHeight: 40
Rectangle {
color: "yellow"
height: 3
width: parent.width
anchors.bottom: parent.bottom
}
}
}