千家信息网

QML自定义IP地址输入框

发表于:2024-11-30 作者:千家信息网编辑
千家信息网最后更新 2024年11月30日,QML输入框同样能用正则表达式,在输入ip地址时使用正则来判断输入的正确性 TextField { id: textfield_operation_ip1 x: 492 y:
千家信息网最后更新 2024年11月30日QML自定义IP地址输入框
QML输入框同样能用正则表达式,在输入ip地址时使用正则来判断输入的正确性    TextField {    id: textfield_operation_ip1    x: 492    y: 120    width: 269    height: 61    text: ""    visible: true    placeholderText: qsTr("请输入IP地址")    font.pixelSize: 25    focus:true    validator: RegExpValidator{regExp:/(?=(\b|\D))(((\d{1,2})|(1\d{1,2})|(2[0-4]\d)|(25[0-5]))\.){3}((\d{1,2})|(1\d{1,2})|(2[0-4]\d)|(25[0-5]))(?=(\b|\D))/}

// style: textfied_style
}

0