C#的托盘 鼠标事件
当鼠标移动到托盘上,有事件能判断吗?
我主要想实现每次当鼠标移动到托盘上的时候显示不同的 text
------解决方案--------------------private void notifyIcon1_MouseMove(object sender, MouseEventArgs e)
{
this.notifyIcon1.Text = "test ";
}
------解决方案--------------------同楼上, 只能对Notify控件做操作
不然你就要用API了