[DllImport("user32.dll")]
static extern bool FlashWindow(IntPtr hwnd, bool bInvert);
None.
Flashes the taskbar button of the window once to get the user's attention.
Please add some!
[DllImport("user32.dll")]
private static extern bool FlashWindow(IntPtr hwnd, bool bInvert);
public static void FlashWindow(System.Windows.Forms.Form window)
{
FlashWindow(window.Handle, false);
}
Do you know one? Please contribute it!