Qt 如何更改Qml文本字段echoMode密码显示的星号?

Qt 如何更改Qml文本字段echoMode密码显示的星号?,qt,qml,textfield,Qt,Qml,Textfield,如何用另一个字符更改Qml TextField echoMode密码显示的星号 TextField { id: textId anchors.fill: parent font { pixelSize: 20 } echoMode: TextInput.PasswordEchoOnEdit } 设置属性。它是TextInput的属性,但由TextField继承

如何用另一个字符更改Qml TextField echoMode密码显示的星号

TextField {
    id: textId
    anchors.fill: parent
    font {
        pixelSize: 20
    }
    echoMode: TextInput.PasswordEchoOnEdit
}
设置属性。它是
TextInput
的属性,但由
TextField
继承