Ejemplo n.º 1
0
 /// <summary>
 /// Stop Flashing the specified Window
 /// </summary>
 public static bool Stop(IntPtr handle)
 {
     return(TaskbarFlash.Flash(handle, Constants.FLASHW_STOP));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Flash the specified Window for the specified number of times
 /// </summary>
 public static bool Flash(IntPtr handle, uint count)
 {
     return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL, count));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Start Flashing the specified Window
 /// </summary>
 public static bool Start(IntPtr handle)
 {
     return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Flash the specified Window until it comes in the foreground
 /// </summary>
 public static bool Flash(IntPtr handle)
 {
     return(TaskbarFlash.Flash(handle, Constants.FLASHW_ALL | Constants.FLASHW_TIMERNOFG));
 }