private void FlashWindow(Form form) { FLASHWINFO fw = new FLASHWINFO(); fw.cbSize = Convert.ToUInt32(Marshal.SizeOf(typeof(FLASHWINFO))); fw.hwnd = form.Handle; fw.dwFlags = 14; fw.uCount = 0; Win32Stuff.FlashWindowEx(ref fw); }
public static extern Int32 FlashWindowEx(ref FLASHWINFO pwfi);
public static extern int FlashWindowEx(ref FLASHWINFO pwfi);