18 lines
342 B
QML
18 lines
342 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
id: button
|
|
|
|
implicitWidth: 187
|
|
implicitHeight: 50
|
|
|
|
contentItem: Image {
|
|
anchors.fill: parent
|
|
source: button.down
|
|
|| button.hovered ? "qrc:/images/open_file_blue.png" : "qrc:/images/open_file_white.png"
|
|
}
|
|
|
|
background: Item {}
|
|
}
|