21 lines
514 B
QML
21 lines
514 B
QML
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 {}
|
|
}
|
|
}
|