mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
29 lines
642 B
QML
29 lines
642 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Popup {
|
|
id: popup
|
|
default property alias content: container.children
|
|
|
|
background: Rectangle {
|
|
implicitWidth: 140
|
|
implicitHeight: container.height
|
|
color:FluTheme.isDark ? Qt.rgba(45/255,45/255,45/255,1) : Qt.rgba(237/255,237/255,237/255,1)
|
|
radius: 5
|
|
|
|
FluShadow{
|
|
radius: 5
|
|
}
|
|
Column{
|
|
spacing: 5
|
|
topPadding: 5
|
|
bottomPadding: 5
|
|
id:container
|
|
function closePopup(){
|
|
popup.close()
|
|
}
|
|
}
|
|
}
|
|
}
|