QML控件类型:MenuBar

一、描述

MenuBar 由下拉菜单组成,通常位于窗口的顶部边缘。继承自 Container。

ApplicationWindow {
    id: window
    width: 320
    height: 260
    visible: true

    menuBar: MenuBar {
        Menu {
            title: qsTr("&File")
            Action { text: qsTr("&New...") }
            Action { text: qsTr("&Open...") }
            Action { text: qsTr("&Save") }
            Action { text: qsTr("Save &As...") }
            MenuSeparator { }
            Action { text: qsTr("&Quit") }
        }
        Menu {
            title: qsTr("&Edit")
            Action { text: qsTr("Cu&t") }
            Action { text: qsTr("&Copy") }
            Action { text: qsTr("&Paste") }
        }
        Menu {
            title: qsTr("&Help")
            Action { text: qsTr("&About") }
        }
    }
}

通常,菜单静态声明为菜单栏的子项,但 MenuBar 还提供 API 来动态添加、插入、删除和获取菜单。 可以使用 menuAt() 访问菜单栏中的菜单。

二、属性成员

1、delegate : Component

用于创建菜单栏项以在菜单栏中显示菜单的委托组件。

2、menus : list<Menu>

菜单列表。

该列表包含在 QML 中声明为菜单栏子项的所有菜单,以及分别使用 addMenu() 和 insertMenu() 方法动态添加或插入的菜单。

三、成员函数

1、void addMenu(Menu menu)

将菜单添加到菜单列表的末尾。

2、void insertMenu(int index, Menu menu)

在索引处插入菜单。

3、Menu menuAt(int index)

返回索引处的菜单,如果不存在则返回 null。

4、void removeMenu(Menu menu)

删除和销毁指定的菜单。

5、Menu takeMenu(int index)

移除并返回 index 处的菜单。菜单的所有权转移给调用者。

你可能感兴趣的:(#,QML控件类型,qml)