Advertisement
Guest User

Untitled

a guest
Mar 17th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ComboBox {
  2. currentIndex: 2
  3. model: ListModel {
  4. id: cbItems
  5. ListElement { text: "Banana"; color: "Yellow"; textRole: "textRole1"}
  6. ListElement { text: "Apple"; color: "Green"; textRole: "textRole2"}
  7. ListElement { text: "Coconut"; color: "Brown"; textRole: "textRole3"}
  8. }
  9. width: 200
  10. onCurrentIndexChanged: console.debug(cbItems.get(currentIndex).text + ", " + cbItems.get(currentIndex).color + ", " + cbItems.get(currentIndex).textRole)
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement