예제 #1
0
 public void RemoveFromTrayIcon(IntPtr tabBarHandle)
 {
     if (trayIcon == null)
     {
         trayIcon = new TrayIcon();
     }
     trayIcon.RestoreWindow(tabBarHandle);
 }
예제 #2
0
 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);
 }