如题目就象QQ隐藏在任务栏。当有什么信息更新时,有一个提示框提醒用户(客户端的。不是网站上的)请各位指教!

解决方案 »

  1.   

    创建一个FORM, 给予他显示的动画程序控制, 就是控制它的TOP/LEFT属性的呀.
      

  2.   

    一般是用form或者控件来控件它的top的了。要不这样?
      

  3.   

    很好看,我也想看看
    [email protected]
    謝謝
      

  4.   

    楼主可不可以也给我发一份?
    [email protected]
      

  5.   

    不错的东西,是否也给我发一份,谢谢了。
    [email protected]
      

  6.   

    我也要一份啊。。
    [email protected]
      

  7.   

    我也要呀~~~~  谢谢了![email protected]
      

  8.   

    [email protected]
    我也学习。发我一份
    谢谢
      

  9.   

    [email protected]
    麻烦楼主也发我份,谢谢
      

  10.   

    可以给我一份吧
    [email protected]
      

  11.   

    我也要一份啊。。 谢谢
    [email protected]
      

  12.   

    我也要一份~~~谢谢
    [email protected]
      

  13.   

    给我也来一份  
    [email protected]
      

  14.   

    楼主发一份瞧瞧呢,很实用的
    [email protected]
      

  15.   

    楼主发一份看看哇·[email protected]谢谢··
      

  16.   

    1. 打开VS,打开你的工程
    2. 工具栏右键-选择项-.net fw组件-选择-找到那个choicontrols.dll,确定
    3. 所有的控件都会出现在工具栏里了。把choimessage拖过去就可以了。
      

  17.   

    也给我来一份吧,谢谢~~     mail:   [email protected]
      

  18.   

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;namespace SoundClew
    {
        public partial class Form6 : Form
        {
            public Form6(string sMess)
            {
                InitializeComponent();
                this.textBox1.Text = sMess;
            }        private int heightMax, widthMax;
            public int HeightMax
            {
                set
                {
                    heightMax = value;
                }
                get
                {
                    return heightMax;
                }
            }        public int WidthMax
            {
                set
                {
                    widthMax = value;
                }
                get
                {
                    return widthMax;
                }
            }        public void ScrollShow()
            {
                this.Width = widthMax;
                this.Height = 0;
                this.Show();
                this.timer1.Enabled = true;
            }        public int StayTime = 6000;
            private void ScrollUp()
            {
                if (Height < heightMax)
                {
                    this.Height += 3;
                    this.Location = new Point(this.Location.X, this.Location.Y - 3);
                }
                else
                {
                    this.timer1.Enabled = false;
                    this.timer2.Enabled = true;
                }
            }        private void ScrollDown()
            {
                if (Height > 3)
                {
                    this.Height -= 3;
                    this.Location = new Point(this.Location.X, this.Location.Y + 3);
                }
                else
                {
                    this.timer3.Enabled = false;
                    this.Close();
                }
            }        private void timer1_Tick(object sender, System.EventArgs e)
            {
                ScrollUp();
            }        private void timer2_Tick(object sender, System.EventArgs e)
            {
                timer2.Enabled = false;
                timer3.Enabled = true;
            }        private void timer3_Tick(object sender, System.EventArgs e)
            {
                ScrollDown();
            }        private void Form6_Load(object sender, EventArgs e)
            {
                Screen[] screens = Screen.AllScreens;
                Screen screen = screens[0];//获取屏幕变量
                this.Location = new Point(screen.WorkingArea.Width - widthMax - 20, screen.WorkingArea.Height - 34);//WorkingArea为Windows桌面的工作区
                this.timer2.Interval = StayTime;
            }    }
      

  19.   

    [email protected] 
    麻烦楼主也发我份,谢谢
      

  20.   

    感謝 7 楼 Choi57671452 風緒
    我已經收到你的郵件了
      

  21.   

    楼主也发份给吧~谢谢啦!^_^
    [email protected]
      

  22.   

    麻烦了~~~有收到的情转发一份吧~~
    邮箱[email protected]
    谢谢啦~~~
      

  23.   

    [email protected]
    谢谢楼主了。
    方便的话,给我也传一份。:)