解决方法
您可以使用作为.NET 2.0 System.Windows.Forms一部分的notifyIcon控件.这允许您在系统托盘中为您的应用程序放置一个图标.然后,您可以调用ShowBalloonTip(int timeOut)方法.但是请确保在notifyIcon上首先设置文本和图标属性,使其工作.小代码示例:
private void button1_Click(object sender,EventArgs e) { this.notifyIcon1.BalloonTipText = "Whatever"; this.notifyIcon1.BalloonTipTitle = "Title"; this.notifyIcon1.Icon = new Icon("icon.ico"); this.notifyIcon1.Visible = true; this.notifyIcon1.ShowBalloonTip(3); }
编辑:好的,所以notifyIcon不会为你工作.那么我的第二个建议就是为此创建自己的控制.其实我会用一张表格.一个简单的形式,没有边框,没有控制框,只是有一个定时器运行,所以你可以设置不透明度淡入/淡出.然后,您可以使用Rectangle Screen.PrimaryScreen.WorkingArea轻松获取屏幕的右下方.然后在这个位置显示你的表格.