MenuSeparator QML Type

Separates a group of items in a menu from adjacent items. 更多...

导入语句: import QtQuick.Controls 2.5
Since: Qt 5.8
继承:

Control

详细描述

MenuSeparator is used to visually distinguish between groups of items in a menu by separating them with a line.

import QtQuick 2.12
import QtQuick.Controls 2.12
Menu {
    id: menu
    MenuItem {
        text: qsTr("New...")
    }
    MenuItem {
        text: qsTr("Open...")
    }
    MenuItem {
        text: qsTr("Save")
    }
    MenuSeparator {
        padding: 0
        topPadding: 12
        bottomPadding: 12
        contentItem: Rectangle {
            implicitWidth: 200
            implicitHeight: 1
            color: "#1E000000"
        }
    }
    MenuItem {
        text: qsTr("Exit")
    }
}
					

另请参阅 Customizing Menu , Menu ,和 分隔符控件 .