PresentationApp/qml/img.qml

17 lines
299 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
2016-03-07 21:40:07 -08:00
2016-03-07 08:54:14 -08:00
}