窗口 – 如何使任务栏闪烁我的应用程序像Messenger当新消息到达时?
发布时间:2020-07-03 10:29:09 所属栏目:Windows 来源:互联网
导读:在.NET或本机DLL中是否有API调用,当我与某人聊天时,我可以用来创建与Windows Live Messenger类似的行为? FlashWindowEx是要走的路。见 here for MSDN documentation [DllImport(user32.dll)][return: MarshalAs(UnmanagedType.Bool)]static extern bool
在.NET或本机DLL中是否有API调用,当我与某人聊天时,我可以用来创建与Windows Live Messenger类似的行为? FlashWindowEx是要走的路。见 here for MSDN documentation [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] static extern bool FlashWindowEx(ref FLASHWINFO pwfi); [StructLayout(LayoutKind.Sequential)] public struct FLASHWINFO { public UInt32 cbSize; public IntPtr hwnd; public UInt32 dwFlags; public UInt32 uCount; public UInt32 dwTimeout; } public const UInt32 FLASHW_ALL = 3; 调用功能: FLASHWINFO fInfo = new FLASHWINFO(); fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo)); fInfo.hwnd = hWnd; fInfo.dwFlags = FLASHW_ALL; fInfo.uCount = UInt32.MaxValue; fInfo.dwTimeout = 0; FlashWindowEx(ref fInfo); 这是从Pinvoke.net无端插上 (编辑:岳阳站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- Microsoft Unit Testing Framework for C++
- .net – 任务栏中应用程序图标上的Win7进度条?
- 使用def文件简化dll导出
- 如何避免windows系统开机启动每次都弹出AutoIt报错
- windows – procdump -t – 如何在进程终止时转储 – 使用?
- window下强制杀死某个进程用taskkill /pid 进程号 -t -f命令
- Windows下nodejs环境配置
- windows10 安装python.msi出现error 2502/2503解决方法
- windows-nginx-https-本地配置
- 如何在Windows PowerShell中进行屏幕截图?
推荐文章
站长推荐
热点阅读