WPF高亮图像?
WPF 中有什么效果可以使图像闪亮等吗? (我想将它用于悬停图像)
掩模或类似的东西会很棒。
Is there any effect in WPF I could Make an image shiny etc.?
(I want to use it for a hovered image)
A mask or something like this would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试对图像应用 BitmapEffect,只需记住它们使用起来可能很昂贵。
OuterGlowBitmapEffect 可能会帮助您。
Try applying a BitmapEffect to the image, just keep in mind that they can be expensive to use.
OuterGlowBitmapEffect might help you.
这取决于你所说的“闪亮”是什么意思。一个简单的方法是将每个图像的不透明度设置为 0.5,并在鼠标进入时将其更改为 1。
It depends on what do you mean by "shiny". A simple way is to have each image opacity set to 0.5 and change it to 1 when mouse is in.