public void RemoveFromTrayIcon(IntPtr tabBarHandle) { if (trayIcon == null) { trayIcon = new TrayIcon(); } trayIcon.RestoreWindow(tabBarHandle); }
public void AddToTrayIcon(IntPtr tabBarHandle, IntPtr explorerHandle, string currentPath, string[] tabNames, string[] tabPaths) { if (trayIcon == null) { trayIcon = new TrayIcon(); } trayIcon.AddToTrayIcon(tabBarHandle, explorerHandle, currentPath, tabNames, tabPaths); }