私はwpfで次のxamlを使用していました:
<Style TargetType="{x:Type Border}">
<Setter Property="BitmapEffect">
<Setter.Value>
<BitmapEffectGroup>
<DropShadowBitmapEffect ShadowDepth="1"/>
</BitmapEffectGroup>
</Setter.Value>
</Setter>
</Style>
DropShadowBitmapEffect が廃止され、DropShadowEffect が推奨されていることを発見したとき:
<Style TargetType="{x:Type Border}">
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect></DropShadowEffect>
</Setter.Value>
</Setter>
</Style>
しかし、私は幸運なことにこれを知っています!! xaml で記述された特定のコントロールが廃止されたことをどのように知ることができますか??