24 lines
274 B
QML
24 lines
274 B
QML
|
|
||
|
|
||
|
import QtQuick 2.5
|
||
|
|
||
|
Item {
|
||
|
id: imageslide
|
||
|
|
||
|
visible: false
|
||
|
|
||
|
anchors.fill: parent
|
||
|
|
||
|
property bool isSlide: true;
|
||
|
|
||
|
property string notes;
|
||
|
|
||
|
property string src;
|
||
|
|
||
|
Image {
|
||
|
id: image
|
||
|
source: src
|
||
|
anchors.centerIn: parent
|
||
|
}
|
||
|
}
|