Advertisement
artemmarchenko

NotWorkingDynamicId

Aug 25th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 1.0
  2.  
  3. Rectangle {
  4.     width: 400
  5.     height: 300
  6.     property string identity: "a123"
  7.     id: identity
  8.     color: "lightyellow"
  9.  
  10.     Rectangle {
  11.         anchors.bottom: parent.bottom
  12.         anchors.left: parent.left
  13.         width: 100
  14.         height: 100
  15.         color: "blue"
  16.  
  17.         MouseArea {
  18.             anchors.fill: parent
  19.             onClicked: {
  20.                 console.log(a123.identity)
  21.             }
  22.         }
  23.  
  24.     }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement