16 lines
316 B
QML
16 lines
316 B
QML
import QtQuick 2.4
|
|
|
|
Image {
|
|
id: img
|
|
antialiasing: true
|
|
source: "image://images/"
|
|
objectName: "cellImg"
|
|
property int index: 0
|
|
height: 100
|
|
transformOrigin: Item.TopLeft
|
|
fillMode: Image.PreserveAspectFit
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
//cache: false
|
|
}
|