标签:
#region 引用文件作用于在任务栏高亮显示
[System.Runtime.InteropServices.DllImport("user32.dll")]
public static extern bool FlashWindow(System.IntPtr hWnd, bool bInvert);
#endregion
#region 调用
FlashWindow(Form1, true);
#endregion
就如聊天窗口在系统工具栏提醒业务一样,窗口在工具栏高亮显示
以此作为备忘
标签:
原文地址:http://www.cnblogs.com/mpy2003/p/4659129.html