forked from qt-creator/qt-creator
11 lines
136 B
QML
11 lines
136 B
QML
|
|
import QtQuick 2.1
|
||
|
|
|
||
|
|
Image {
|
||
|
|
id: rectangle1
|
||
|
|
x: 10;
|
||
|
|
y: 10;
|
||
|
|
height: 150
|
||
|
|
width: 100
|
||
|
|
source: "qt/icon.png"
|
||
|
|
}
|