TG-PlatformPlus/qml/Style/ButtonStyle.qml

21 lines
514 B
QML
Raw Permalink Normal View History

2026-03-02 14:29:58 +08:00
import QtQuick
import QtQuick.Controls.Styles
Component {
ButtonStyle {
background: Rectangle {
implicitWidth: 100
implicitHeight: 30
radius: 5
color: control.pressed ? "#0065d5" : "#0089ff"
Text {
anchors.centerIn: parent
text: control.text
font.family: "微软雅黑"
font.pointSize: 12
color: "white"
}
}
label: Text {}
}
}