I was using the following xaml in wpf:
<Style TargetType="{x:Type Border}">
<Setter Property="BitmapEffect">
<Setter.Value>
<BitmapEffectGroup>
<DropShadowBitmapEffect ShadowDepth="1"/>
</BitmapEffectGroup>
</Setter.Value>
</Setter>
</Style>
When I discovered that DropShadowBitmapEffect is now deprecated in favour of DropShadowEffect:
<Style TargetType="{x:Type Border}">
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect></DropShadowEffect>
</Setter.Value>
</Setter>
</Style>
But I know this in a lucky way!! How can I know that a certain control written in xaml is now deprecated??