framelesshelper/examples/QQPlayer/resources/qml/VolumeButton.qml

18 lines
344 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
Button {
id: control
implicitWidth: 18
implicitHeight: 14
contentItem: Image {
anchors.fill: control
source: control.down
|| control.hovered ? "qrc:/images/volume_blue_light.png" : "qrc:/images/volume_blue.png"
}
background: Item {}
}