FluentUI/src/controls/FluMenu.qml

27 lines
665 B
QML
Raw Normal View History

2023-03-02 18:21:43 +08:00
import QtQuick 2.15
2023-03-02 23:58:50 +08:00
import QtQuick.Layouts 1.15
2023-03-02 18:21:43 +08:00
import QtQuick.Controls 2.15
2023-03-02 23:58:50 +08:00
Popup {
id: popup
default property alias content: container.children
background: FluRectangle {
implicitWidth: 140
implicitHeight: container.height
color:FluApp.isDark ? Qt.rgba(45/255,45/255,45/255,1) : Qt.rgba(237/255,237/255,237/255,1)
radius: [5,5,5,5]
layer.effect: FluDropShadow{}
layer.enabled: true
Column{
spacing: 5
topPadding: 5
bottomPadding: 5
id:container
function closePopup(){
popup.close()
}
2023-03-02 18:21:43 +08:00
}
}
}