blob: dc13cc08eee9d33c51b81684368d6f58e445bc25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
..
---------------------------------------------------------------------------
Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
All rights reserved.
This work, unless otherwise expressly stated, is licensed under a
Creative Commons Attribution-ShareAlike 2.5.
The full license document is available from
http://creativecommons.org/licenses/by-sa/2.5/legalcode .
---------------------------------------------------------------------------
How to make a transparent Rectangle
===================================
.. code-block:: js
import QtQuick 1.1
Rectangle {
width: 300; height: 300
// use the color named "transparent"
color: "transparent"
border { color: "black"; width: 2 }
}
|