QML_Balancer/content/TextFieldGTL.qml

36 lines
824 B
QML
Raw Normal View History

2023-09-03 18:49:20 +03:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import QML_Balancer 1.0
//Item {
TextField {
id: textfieldgtl
width: 600
height: 140
//selectedTextColor: "white"
//placeholderTextColor: "white"
layer.enabled: false
focus: false
antialiasing: false
font.weight: Font.Normal
font.pointSize: 40
background: Item {
implicitHeight: 140
implicitWidth: 600
BorderImage {
source: pathImg
border.left: 8
border.right: 8
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
}
}
placeholderText: qsTr("Введите значение")
}
//}