思路
1)从dll中导入 FlashWindowEx函数
2)调用
1 // 声明
2 #if defined (__cplusplus)
3 extern "C"{
4 #endif
5 WINUSERAPI BOOL WINAPI FlashWindowEx(PFLASHWINFO pfwi);
6 #if defined (__cplusplus)
7 };
8 #endif
9
10 // 调用
11 FLASHWINFO fwi;
12 fwi.cbSize = sizeof(FLASHWINFO);
13 fwi.dwFlags = 3; // 1 闪烁标题栏2 闪烁任务栏3 Both
14 fwi.dwTimeout = 100;
15 fwi.hwnd = hwnd;
16 fwi.uCount = 10;
17 FlashWindowEx(&fwi);
闪烁窗口,码迷,mamicode.com
时间: 2024-10-19 18:23:48