forked from qt-creator/qt-creator
27 lines
401 B
QML
27 lines
401 B
QML
|
|
import QtQuick 2.1
|
||
|
|
|
||
|
|
Item {
|
||
|
|
id: root
|
||
|
|
|
||
|
|
Rectangle {
|
||
|
|
id: rectangle0
|
||
|
|
Image {
|
||
|
|
id: rectangle1
|
||
|
|
x: 10
|
||
|
|
y: 10
|
||
|
|
width: 100
|
||
|
|
height: 150
|
||
|
|
source: "qt/icon.png"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Image {
|
||
|
|
id: rectangle4
|
||
|
|
x: 10
|
||
|
|
y: 10
|
||
|
|
width: 100
|
||
|
|
height: 150
|
||
|
|
source: "qt/realcool.jpg"
|
||
|
|
}
|
||
|
|
}
|