12 lines
149 B
QML
12 lines
149 B
QML
|
import QtQuick
|
||
|
|
||
|
Rectangle {
|
||
|
Item {
|
||
|
id: child
|
||
|
property real a: parent.radius
|
||
|
}
|
||
|
|
||
|
property real a: child.a
|
||
|
radius: 77
|
||
|
}
|