如何对同一元素应用多种效果
我如何在同一元素上设置多种效果(例如阴影和模糊)。
How can i set mulitple effect like(shadow and blur) on same element.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何在同一元素上设置多种效果(例如阴影和模糊)。
How can i set mulitple effect like(shadow and blur) on same element.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
请参阅在 WPF 中使用效果 (第 2 部分),作者:Greg Schechter,其中可以简单地像
Border
一样嵌套Decorators
,并在每个装饰器上放置不同的Effect
。See Using Effects in WPF (Part 2) by Greg Schechter where one can simply nest
Decorators
like aBorder
and put a differentEffect
s on each.要基于最初的答案并提供示例,只需将
UIElement
包含在另一个新的UIElement
中(与此相关的任何元素,例如堆栈面板)。然后对两个元素应用效果,如下所示:
To build on the initial answer and provide an example, just enclose the
UIElement
within another newUIElement
(any element for that matter, like a stack panel for example).Then apply effects for both elements as such:
我认为这里没有必要组合效果。
其中一种效果将帮助您模拟其他效果
就像 DropShadow 效果一样,您可以使用 BlurRadius 实现模糊效果,使用 ShadowDepth 实现阴影。
通过使用适当的值,您可以模拟组合效果...
I think there is no need to combine effects here.
One of these effect will help you for simulating other effects
like in case of DropShadow Effect, You could use BlurRadius for Blur Effect and ShadowDepth for shadow..
By using appropriate values you could simulate combination effects...