How do I create a round DropShadowPanel
? This question provides some idea but I still got a square shadow.
This is my current try:
<Grid>
<controls:DropShadowPanel
x:Name="ShadowPanel"
BlurRadius="10"
ShadowOpacity="1">
<Ellipse Width="120" Height="120" />
</controls:DropShadowPanel>
<Grid
Width="120"
Height="120"
Background="DarkGray"
CornerRadius="60">
<FontIcon
FontSize="50"
Foreground="White"
Glyph="" />
</Grid>
</Grid>
Basically, I want the DropShadowPanel
to have the same shape as the inner grid.