首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > C# > C# 模糊文字 点击按钮文字模糊

C# 模糊文字 点击按钮文字模糊

  • 资源大小:45.70 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: C#源码

资 源 简 介

C# 制作的模糊文字 点击按钮文字模糊效果,这是基于WPF的一个图像特效,将文字模糊显示,如图所示,运行本程序后,点击窗口中的按钮,即可将按钮中的文字模糊处理。下面来看具体的模糊按钮文字的实现代码:   if (((Button)sender).BitmapEffect != null)   {    ((Button)sender).BitmapEffect = null;   }   else   {    Button MyButton = (Button)sender;    var MyBlurEffect = new System.Windows.Media.Effects.BlurBitmapEffect();    MyBlurEffect.Radius = 4;    MyBlurEffect.KernelType = System.Windows.Media.Effects.KernelType.Box;    MyButton.BitmapEffect = MyBlurEffect;   }

文 件 列 表

srcfans.com
C# 模糊文字 点击按钮文字模糊
MyWPF
App.xaml.cs
C# 模糊文字 点击按钮文字模糊
C# 模糊文字 点击按钮文字模糊
MyWPF
App.xaml
srcfans.com
VIP VIP
0.185092s