Esempio n. 1
0
 /// <summary>
 /// Shuts down the system tray hooks.
 /// </summary>
 public void ShutdownSystray()
 {
     InteropCalls.ShutdownSystray();
 }
Esempio n. 2
0
 /// <summary>
 /// Shuts down all the tasks.
 /// </summary>
 public void ShutdownAll()
 {
     InteropCalls.ShutdownAll();
 }
Esempio n. 3
0
 /// <summary>
 /// Shuts down the task hooks.
 /// </summary>
 public void ShutdownTask()
 {
     InteropCalls.ShutdownTask();
 }
Esempio n. 4
0
 /// <summary>
 /// Starts the system tray listener (send the TaskbarCreated message).
 /// </summary>
 public void Run()
 {
     InteropCalls.Run();
 }
Esempio n. 5
0
 /// <summary>
 /// Initializes the task hooks.
 /// </summary>
 public void InitializeTask()
 {
     InteropCalls.InitializeTask();
 }
Esempio n. 6
0
 /// <summary>
 /// Initializes the system tray hooks.
 /// </summary>
 public void InitializeSystray()
 {
     InteropCalls.InitializeSystray();
 }
Esempio n. 7
0
 /// <summary>
 /// Sets the delegate for the task callback.
 /// </summary>
 /// <param name="theDelegate">The task callback delegate.</param>
 public void SetTaskCallback(Delegate theDelegate)
 {
     InteropCalls.SetTaskCallback(theDelegate);
 }
Esempio n. 8
0
 /// <summary>
 /// Sets the delegate for the system tray callback.
 /// </summary>
 /// <param name="theDelegate">The system tray callback delegate.</param>
 public void SetSystrayCallback(Delegate theDelegate)
 {
     InteropCalls.SetSystrayCallback(theDelegate);
 }