TG-PlatformPlus/qml/Style/MenuButtonStyle.qml

20 lines
492 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: 120
implicitHeight: 25
color: control.hovered ? "#d9d9d9" : "#f0f0f0"
Text {
anchors.centerIn: parent
text: control.text
font.family: "微软雅黑"
font.pointSize: 10
color: "black"
}
}
label: Text {}
}
}