AutoCatQt/views/TextField.qml
2023-07-04 01:02:03 +03:00

24 lines
476 B
QML

import QtQuick
FocusScope {
property alias input: input
property alias text: input.text
property alias passwordCharacter: input.passwordCharacter
property alias echoMode: input.echoMode
height: input.contentHeight + 8
Rectangle {
anchors.fill: parent
//border.color: "gray"
//color: "lightsteelblue"
}
TextInput {
id: input
anchors.fill: parent
anchors.margins: 4
focus: true
}
}