TG-PlatformPlus/qml/common/QxTextField.qml

23 lines
483 B
QML
Raw Permalink Normal View History

2026-03-02 14:29:58 +08:00
import QtQuick
import QtQuick.Controls
import "../common"
// import "../Style"
TextField {
property var _pt: ""
width: 300
height: 30
font.family: "微软雅黑"
placeholderTextColor: "#A5A5A5"
color: "#1D2129"
background: Rectangle {
implicitWidth: 330
implicitHeight: 30
color: "#F2F3F5"
border.color: "#0068B4"
}
focus: true
selectByMouse: true
placeholderText: _pt
font.weight: Font.ExtraLight
}