Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.47 KB | None | 0 0
  1. Menu {
  2.     id: routingMenu
  3.     width: maximumWidth
  4.     height: 200
  5.     y: 20
  6.     cascade: true
  7.  
  8.     signal sendCountry();
  9.     signal sendCity ();
  10.     signal sendStreet ();
  11.     signal sendPostalCode ();
  12.  
  13. Button {
  14.         id: sendDataToItem
  15.         width: 100
  16.         height: 40
  17.         x: app_window.width / 2.7
  18.         text: "Send"
  19.  
  20.         onClicked: {
  21.  
  22.  
  23.              onSendCountry: fromAddress.country = txtFromAddressCountry.text;
  24.         }
  25.     }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement