You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
212 B
QML
11 lines
212 B
QML
8 years ago
|
import QtQuick 2.1
|
||
|
|
||
|
Image{
|
||
|
anchors.fill: parent
|
||
|
fillMode: Image.Tile
|
||
|
horizontalAlignment: Image.AlignLeft
|
||
|
verticalAlignment: Image.AlignTop
|
||
|
source: "../icons/blueprint.jpg"
|
||
|
opacity: 0.5
|
||
|
}
|