标签:
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
notifyIcon1.ShowBalloonTip (3000,"你他妈的出来了啊","我是泡泡。。。。。。。。。。",ToolTipIcon.Info);
}
}
}
放置了notifyIcon1 要对她的属性进行设置才能用 把她放在按钮事件里面触发
标签:
原文地址:http://www.cnblogs.com/xblydy/p/4321277.html