MenuSeparator QML Type▲
-
Import Statement: import QtQuick.Controls 2.14
-
Since: Qt 5.8
-
Inherits: Control
-
Group: MenuSeparator is part of qtquickcontrols2-separators
Detailed Description▲
MenuSeparator is used to visually distinguish between groups of items in a menu by separating them with a line.

Sélectionnez
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")
}
}See Also▲
See also Customizing Menu, Menu, Separator Controls


