1.
import QtGraphicalEffects 1.15Rectangle {id: framewidth: root.widthheight: root.heightanchors.centerIn: parentcolor: "#2B2B2B"radius: 6layer.enabled: truelayer.effect: DropShadow {horizontalOffset: 3 // 水平偏移verticalOffset: 3 // 垂直偏移radius: 8.0 // 模糊半径samples: 16 // 阴影采样数(影响平滑度)color: "#80000000" // 阴影颜色(带透明度) } }
