C# 模仿QQ右下角 消息闪烁提示

主要是使用自带的notifyIcon这个控件即可,用两个icon图片循环切换,效果即闪烁提示。

主要代码如下:

[csharp]  view plain  copy
  1. public partial class Form1 : Form  
  2.     {  
  3.         int i = 0; //先设置一个全局变量 i ,用来控制图片索引,然后创建定时事件,双击定时控件就可以编辑     
  4.         private Icon ico1 = Properties.Resources.ico1;  
  5.         private Icon ico2 = Properties.Resources.ico2; //两个图标 切换显示 以达到消息闪动的效果    
  6.   
  7.         public Form1()  
  8.         {  
  9.             InitializeComponent();  
  10.         }  
  11.   
  12.         private void button1_Click(object sender, EventArgs e)  
  13.         {  
  14.             this.timer1.Enabled = true;    
  15.         }  
  16.   
  17.         private void timer1_Tick(object sender, EventArgs e)  
  18.         {  
  19.             //如果i=0则让任务栏图标变为透明的图标并且退出    
  20.             if (i < 1)  
  21.             {  
  22.                 this.notifyIcon1.Icon = ico2;  
  23.                 i++;  
  24.                 return;  
  25.             }  
  26.             //如果i!=0,就让任务栏图标变为ico1,并将i置为0;    
  27.             else  
  28.                 this.notifyIcon1.Icon = ico1;  
  29.             i = 0;     
  30.         }  
  31.     }  

注意:有一张图片最好是透明的ico,定时器Interval设置成500ms,看上去自然一点。

如果还要用notifyIcon做其它操作,可以参考这里


from: https://blog.csdn.net/sudazf/article/details/47724527



你可能感兴趣的:(C#)