本文介绍了单击更改通知图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何更改点击鼠标上的通知??我在C#中使用我们,请帮助我,但是此代码不起作用
谢谢大家的回应

ho to change the notifiicon on click mouse?? im usin the c# help me please but this code does not work
thanks all for responding

if(NotifyIcon.Icon == this.eyeIcon)
{
                NotifyIcon.Icon = this.trafficIcon;
}
            else
{
                NotifyIcon.Icon = this.eyeIcon;
}

推荐答案


这篇关于单击更改通知图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 20:16