codeproject有vc和c#类似的代码
不过那个动画是像msn似的
qq这种淡影淡现是差不多的效果

解决方案 »

  1.   

    加入一notifyIcon控件及timer控件
    需要时将notifyIcon1.Visible =true; 
    timer1.Enable=True ;及
    private void timer1_Tick(object sender, System.EventArgs e)
    {
    if (ico_fileid<10)   //假设为10桢
    {
               str_fileid="picture_" + ico_fileid.ToString () + ".ico";
    ico_fileid++;
    }
    else
    {
    ico_fileid=1;
    } Icon myicon=new Icon (this.GetType() ,str_fileid);
    this.notifyIcon1 .Icon =myicon;
    this.Icon =myicon;
    }
      

  2.   

    要我说干脆做个gif图片算了,比较省事
      

  3.   

    记的在ms 中国社区的精华区里有介绍 实现msn消息提示的文章,
    你去看看,写的比较细,关于c sharp的
      

  4.   

    当侦听到有人上线的时候执行一个方法,该方法就是用来实例化一个Form,该Form可以做成象QQ好友上线通知窗口一样。设置相关参数。
    我想不难。