我是qml的新手。在我的文本输入框中,它仅使用 9 位数字intValidator
。10位以上怎么读???
谁能帮帮我吗。
代码在这里
TextInput
{
id: uid
maximumLength: 100
width: maximumLength * 20
focus: true
validator: IntValidator{bottom:0; top:9999999999}
KeyNavigation.down: bioSelector
}