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("Введите значение") } //}