40 lines
659 B
QML
40 lines
659 B
QML
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
ApplicationWindow {
|
|
width: 200
|
|
height: 200
|
|
|
|
property alias menu: menu
|
|
|
|
MenuItem {
|
|
id: newMenuItem
|
|
text: qsTr("New")
|
|
}
|
|
|
|
MenuSeparator {
|
|
id: menuSeparator
|
|
}
|
|
|
|
MenuItem {
|
|
id: saveMenuItem
|
|
text: qsTr("Save")
|
|
}
|
|
|
|
Menu {
|
|
id: menu
|
|
cascade: true
|
|
|
|
enter: null
|
|
|
|
Component.onCompleted: {
|
|
addItem(newMenuItem)
|
|
addItem(menuSeparator)
|
|
addItem(saveMenuItem)
|
|
}
|
|
}
|
|
}
|