1
我用的是下面的XAML在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編寫的某個控件現在已被棄用?
對不起我的無知......但什麼是R#? – Ricibald 2009-12-02 15:27:16
哦,我很抱歉。 R#= resharper – dustyburwell 2009-12-02 17:05:49