Qt/QML - 如何自定义Popup调光效果?
Qt/QML - How to customize Popup dimming effect?
您好,有什么方法可以在 modal === true
时自定义 Popup
的调光效果吗?我想让 Popup
的周围区域更暗。
您可以通过覆盖附加的 Overlay.modal
属性 来自定义调光效果。请参阅文档 here
Popup {
id: popup
width: 400
height: 400
modal: true
visible: true
Overlay.modal: Rectangle {
color: "#aacfdbe7" // Use whatever color/opacity you like
}
}
您好,有什么方法可以在 modal === true
时自定义 Popup
的调光效果吗?我想让 Popup
的周围区域更暗。
您可以通过覆盖附加的 Overlay.modal
属性 来自定义调光效果。请参阅文档 here
Popup {
id: popup
width: 400
height: 400
modal: true
visible: true
Overlay.modal: Rectangle {
color: "#aacfdbe7" // Use whatever color/opacity you like
}
}