


C# WindowsAPI application FlashWindowEx - Detailed explanation of the method of realizing window flashing
Windows API
In addition to coordinating the execution of applications, allocating memory, and managing resources, Windows, a multi-operating system, is also a large The service center calls various services of this service center (each service is a function), which can help the application to open windows, draw graphics, use peripheral devices, etc., because the objects served by these functions are applications (Application ), so it is called Application Programming Interface, or API function for short. WIN32 API is the application programming interface of the Microsoft Windows 32-bit platform.
FlashWindowEx
Function: Flash the specified window. It does not change the activation state of the window.
Function prototype: BOOL WINAPI FlashWindowEx(
__in PFLASHWINFO pfwi
);
Parameters: pfwi is a pointer to the FLASHWINFO structure. .
Return value: Returns the specified window state before calling the FlashWindowEx function. If the window title was active before the call, the return value is non-zero.
Method to implement window flashing
API import
/// <summary> /// 闪烁窗口 /// </summary> /// <param name="pwfi">窗口闪烁信息结构</param> /// <returns></returns> [DllImport("user32.dll")] public static extern bool FlashWindowEx(ref FLASHWINFO pwfi);
Flash type enumeration definition
/// <summary> /// 闪烁类型 /// </summary> public enum flashType : uint { FLASHW_STOP = 0, //停止闪烁 FALSHW_CAPTION = 1, //只闪烁标题 FLASHW_TRAY = 2, //只闪烁任务栏 FLASHW_ALL = 3, //标题和任务栏同时闪烁 FLASHW_PARAM1 = 4, FLASHW_PARAM2 = 12, FLASHW_TIMER = FLASHW_TRAY | FLASHW_PARAM1, //无条件闪烁任务栏直到发送停止标志或者窗口被激活,如果未激活,停止时高亮 FLASHW_TIMERNOFG = FLASHW_TRAY | FLASHW_PARAM2 //未激活时闪烁任务栏直到发送停止标志或者窗体被激活,停止后高亮 }
FLASHWINFO structure definition
/// <summary> /// 包含系统应在指定时间内闪烁窗口次数和闪烁状态的信息 /// </summary> public struct FLASHWINFO { /// <summary> /// 结构大小 /// </summary> public uint cbSize; /// <summary> /// 要闪烁或停止的窗口句柄 /// </summary> public IntPtr hwnd; /// <summary> /// 闪烁的类型 /// </summary> public uint dwFlags; /// <summary> /// 闪烁窗口的次数 /// </summary> public uint uCount; /// <summary> /// 窗口闪烁的频度,毫秒为单位;若该值为0,则为默认图标的闪烁频度 /// </summary> public uint dwTimeout; }
Flash window method encapsulation
/// <summary> /// 闪烁窗口 /// </summary> /// <param name="hWnd">窗口句柄</param> /// <param name="type">闪烁类型</param> /// <returns></returns> public static bool FlashWindowEx(IntPtr hWnd, flashType type) { FLASHWINFO fInfo = new FLASHWINFO(); fInfo.cbSize = Convert.ToUInt32(Marshal.SizeOf(fInfo)); fInfo.hwnd = hWnd;//要闪烁的窗口的句柄,该窗口可以是打开的或最小化的 fInfo.dwFlags = (uint)type;//闪烁的类型 fInfo.uCount = UInt32.MaxValue;//闪烁窗口的次数 fInfo.dwTimeout = 0; //窗口闪烁的频度,毫秒为单位;若该值为0,则为默认图标的闪烁频度 return FlashWindowEx(ref fInfo); }
The above is the detailed content of C# WindowsAPI application FlashWindowEx - Detailed explanation of the method of realizing window flashing. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Active Directory with C#. Here we discuss the introduction and how Active Directory works in C# along with the syntax and example.

Guide to C# Serialization. Here we discuss the introduction, steps of C# serialization object, working, and example respectively.

Guide to Random Number Generator in C#. Here we discuss how Random Number Generator work, concept of pseudo-random and secure numbers.

Guide to C# Data Grid View. Here we discuss the examples of how a data grid view can be loaded and exported from the SQL database or an excel file.

Guide to Patterns in C#. Here we discuss the introduction and top 3 types of Patterns in C# along with its examples and code implementation.

Guide to Prime Numbers in C#. Here we discuss the introduction and examples of prime numbers in c# along with code implementation.

Guide to Factorial in C#. Here we discuss the introduction to factorial in c# along with different examples and code implementation.

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.
