import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Window 2.0 ApplicationWindow { color: "skyblue" width: 640 height: 480 Component.onCompleted: show() menuBar: MenuBar { Menu { title: "Menu" Menu { title: "Elements" MenuItem { text: "Element 1" } MenuItem { text: "Element 2" } } } Menu { title: "Menu 2" } } }