import QtQuick 2.4 import QtQuick.Controls 1.3 ApplicationWindow { width: 200; height: 200 menuBar: MenuBar { Menu { title: "File" MenuItem { text: "Open..." } } Menu { title: "Edit" MenuItem { text: "Cut" } } } ComboBox{ model:[1, 2, 3] } }