Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
17 lines
341 B
QML
17 lines
341 B
QML
import QtQuick 1.0
|
|
|
|
Rectangle {
|
|
width: 800; height: 600
|
|
|
|
Image {
|
|
objectName: "vTiling"; height: 550; width: 200
|
|
source: "green.png"; fillMode: Image.TileVertically
|
|
}
|
|
|
|
Image {
|
|
objectName: "hTiling"; x: 225; height: 250; width: 550
|
|
source: "green.png"; fillMode: Image.TileHorizontally
|
|
}
|
|
}
|
|
|