PresentationApp/qml/img.qml

24 lines
541 B
QML
Raw Normal View History

2016-03-07 08:54:14 -08:00
import QtQuick 2.4
Image {
id: img
antialiasing: true
source: "image://images/"
objectName: "cellImg"
property int index: 0
2016-03-07 21:40:07 -08:00
height: 100
2016-03-07 08:54:14 -08:00
transformOrigin: Item.TopLeft
fillMode: Image.PreserveAspectFit
anchors.right: parent.right
anchors.left: parent.left
//cache: false
MouseArea {
id: cellMouse
hoverEnabled: true
enabled: true
objectName: "cellMouse"
anchors.fill: parent
acceptedButtons: Qt.AllButtons
}
2016-03-07 08:54:14 -08:00
}