没有 BitmapEffects 的 OuterGlowBitmapEffect 替代方案
OuterGlowBitmapEffect 的良好替代品是什么?
最好是可以在主题/样式中使用的一种,以及可以在没有 BitmapEffects 的情况下使用的一种。
What is a good alternative to OuterGlowBitmapEffect?
Preferably one that can be used in a theme/style and one that can be used without BitmapEffects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
标准
Effect
库提供了DropShadowEffect
,可以将其设置为看起来像OuterGlowBitmapEffect
。此效果的优点在于它是硬件加速的(与在软件中完成的位图效果不同)。要使DropShadowEffect
看起来像发光,只需将ShadowDepth
属性设置为 0。The standard
Effect
library provides aDropShadowEffect
that can be set up to look just like anOuterGlowBitmapEffect
. The nice thing about this effect is that it is hardware-accelerated (unlike the bitmap effects, which are done in software). To make theDropShadowEffect
look like a glow, simply set theShadowDepth
property to 0.不知道好不好,我从来没有测试过它,我只是读过它,看看此处。
Donno if is good or not, I never tested it, I just read about it, check it out here.