notifyIcon动态图标

定时器内调用下面代码

代码如下:


            if(DateTime.Now.Second % 2 == 0) {

                notifyIcon1.Icon =
                        new System.Drawing.Icon(Application.StartupPath + @"\abc.ico");
            }
            else
            {
                notifyIcon1.Icon =
                        new System.Drawing.Icon(Application.StartupPath + @"\abc2.ico");
            }

特此记录

anlog

2023年9月16日

你可能感兴趣的:(笔记,notifyIcon,图标,系统托盘动态图标)