日期:2014-05-17 浏览次数:20970 次
private void button2_Click(object sender, EventArgs e)
{
Thread thread1 = new Thread(bian);
thread1.Start();
}
private void bian()
{
Icon ic1 = new Icon("124.ico");
Icon ic2 = new Icon("123.ico");
while (true)
{
notifyIcon1.Icon = ic1;
Thread.Sleep(500);
notifyIcon1.Icon = ic2;
Thread.Sleep(500);
}