是否有任何解决方法可以在 WPF 中的一个 UIElement 上应用多个效果?
是否有任何解决方法可以在 WPF 中的一个 UIElement
上应用多个效果? 例如,
<Button Content="Blurred (Radius=2)">
<Button.Effect>
<BlurEffect Radius="2"></BlurEffect>
</Button.Effect>
</Button>
提前致谢。
Is there any workaround to apply more then one Effect on one UIElement
in WPF?
e.g.
<Button Content="Blurred (Radius=2)">
<Button.Effect>
<BlurEffect Radius="2"></BlurEffect>
</Button.Effect>
</Button>
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将
UIElement
包装在Border
中,并将附加效果应用于Border
。You can wrap the
UIElement
in, say, aBorder
, and apply the additional effect to theBorder
.也许您可能对 BitmapEffectGroup 感兴趣:
Perhaps you might be interested in the BitmapEffectGroup: