|
import QtQuick
|
|
import QtQuick.Controls.Styles
|
|
import "../resource"
|
|
ButtonStyle {
|
|
background: Item {
|
|
implicitWidth: 25
|
|
implicitHeight: 25
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
width: 20
|
|
height: 20
|
|
scale: control.pressed ? 0.9 : 1
|
|
source: "../resource/close.png"
|
|
}
|
|
}
|
|
}
|