using System.Runtime.InteropServices;
--------------------------
[DllImport("user32.dll")]
public static extern bool FlashWindow(
IntPtr hWnd, // handle to window
bool bInvert // flash status
);
----------------------------------
FlashWindow(handle,true);//闪烁
转载于:https://www.cnblogs.com/whz881027/articles/2128904.html