import QtQuick 2.9 import QtQuick.Layouts 1.3 import QtQuick.Controls 2.2 import QtQuick.Window 2.3 ApplicationWindow { id: top visible:true ComboBox { model: ListModel { id: mod ListElement { text: "Apples" } ListElement { text: "Bananas" } ListElement { text: "Mangos" } } } }