在MouseEnter上为图像添加模糊效果;鼠标离开时删除
所有,我希望当鼠标悬停在图像上时图像模糊(使用模糊效果),并在鼠标离开时恢复正常。
我在基于 Silverlight 的项目中使用 WPF 4、XAML 和 VB.NET 2010。
all, I want an image to blur (using the Blur effect) when the mouse hovers over it, and return to normal when the mouse leaves.
I'm using WPF 4, XAML, and VB.NET 2010 in a Silverlight-based project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用
VisualStateManager
并修改MouseOverState
即可使用
Transition
来控制Normal -> 动画。 MouseOver 变化和 MouseOver ->正常变化独立。然后在显示图像的控件中有以下
效果
:教程
详细信息
The simplest way is to use the
VisualStateManager
and modify theMouseOverState
You can use the
Transition
to control the animation for the Normal -> MouseOver change and the MouseOver -> Normal change independently.Then in the control that displays the image have the following
Effect
:Tutorial
More information