如何查看系统托盘是否已经存在?
How to check The System tray is already exists or not?
有什么方法可以检查系统托盘是否已经存在?当我保留 运行 创建系统托盘的程序时,出现多次出现,这意味着多个程序是 运行。所以,我需要检查系统托盘是否已经存在?
你可以试试:
boolean trayExists = SystemTray.getSystemTray().getTrayIcons().length > 0;
有什么方法可以检查系统托盘是否已经存在?当我保留 运行 创建系统托盘的程序时,出现多次出现,这意味着多个程序是 运行。所以,我需要检查系统托盘是否已经存在?
你可以试试:
boolean trayExists = SystemTray.getSystemTray().getTrayIcons().length > 0;