Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到一个规范的答案。我有很多效果,例如
<Label Content="SomeLabel"> <Label.BitmapEffect> <DropShadowBitmapEffect/> </Label.BitmapEffect> </Label>
BitMapEffect在 WPF4 中已弃用,只是停止工作。标签上的简单投影最简单的迁移路径是什么?
BitMapEffect
它只是Effect现在
Effect
<Label Content="StackOverflow" > <Label.Effect> <DropShadowEffect /> </Label.Effect> </Label>