TG-PlatformPlus/qml/Style/ToolButtonStyle.qml

21 lines
523 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: 60
implicitHeight: 35
color: control.hovered ? "#05357c" : "#0076f6"
Text {
anchors.centerIn: parent
text: control.text
font.family: "微软雅黑"
font.pointSize: 10
font.bold: true
color: "white"
}
}
label: Text {}
}
}