窗口 – 如何使任务栏闪烁我的应用程序像Messenger当新消息到达时?

前端之家收集整理的这篇文章主要介绍了窗口 – 如何使任务栏闪烁我的应用程序像Messenger当新消息到达时?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在.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无端插上

原文链接:https://www.f2er.com/windows/373112.html

猜你在找的Windows相关文章