20 lines
492 B
QML
20 lines
492 B
QML
|
|
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 {}
|
|||
|
|
}
|
|||
|
|
}
|