Notice in the image below the 1px highlight below the text in the grey panel. How could this be achieved with WPF/Silverlight?
.
Notice in the image below the 1px highlight below the text in the grey panel. How could this be achieved with WPF/Silverlight?
.
In Silverlight 3, it is called a DropShadow effect.
Eg.
<Border Height="300" Width="300" Background="Gray">
<Border.Effect>
<DropShadowEffect Opacity="0.34" ShadowDepth="9" Direction="542" BlurRadius="9"/>
</Border.Effect>
</Border>