Advertisement
Guest User

Untitled

a guest
Jul 4th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. TextArea{
  2. id: fooText
  3. objectName: "valor"
  4. width: 550
  5. height: 30
  6. }
  7.  
  8.  
  9. Button {
  10. objectName: "button"
  11. width: parent.width
  12.  
  13. text: i18n.tr("Tap me!")
  14.  
  15. onClicked: {
  16. label.text = i18n.tr(fooText)
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement