有一个组件NotifyIcon放上就行了。

解决方案 »

  1.   

    到www.microsoft.com上搜索“101 samples”,有一个101个VB.net和C#例子中有托盘应用程序
      

  2.   

    this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            notifyIcon1.Icon = new Icon("appicon.ico");       
            notifyIcon1.Text = "Form1 (NotifyIcon example)";
            notifyIcon1.Visible = true;
    鼠标标靠近显示,我想你需要只要你设置form1的mouseup事件了!要不就得掉要api的鼠标钩子函数扑捉鼠标的位置了!
      

  3.   

    那调用API扑捉鼠标位置如何呢?请具体点。