我有一个将 inputMethodHints 设置为 Qt.ImhFormattedNumbersOnly 的 TextField。文档说Qt.ImhFormattedNumbersOnly - 只允许输入数字。这包括小数点和减号。(来源)
但是InputPanel(VirtualKeyboard)也显示* / (等等
ApplicationWindow {
width: 800
height: 480
TextField {
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
width: 200
height: 30
inputMethodHints: Qt.ImhFormattedNumbersOnly
}
InputPanel {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
}
}
错误或功能?