qt6-bb10/qtdeclarative/tests/auto/quick/qquicktextinput/data/qtbug-19956int.qml

16 lines
273 B
QML

import QtQuick 2.0
TextInput {
id: textinput
property real topvalue: 30
property real bottomvalue: 10
height: 50
width: 200
text: "20"
validator: IntValidator {
id: intvalidator
bottom: bottomvalue
top: topvalue
}
}