import QtQuick 2.3 import QtQuick.Controls 1.2 Rectangle { anchors.fill: parent ComboBox { width: 200 property int current: 0 model: ["1. Ambrella", "2. Apple", "3. Banana", "4. Blueberry", "5. Cranberry", "6. Jambul", "7. Mabolo", "8. Mandarin", "9. Lime", "10. Orange", "11. Papaya", "12. Passion fruit", "13. Pineapple", "14. Raspberry", "15. Strawberry", "16. Tomato", "17. Watermelon", ] } }