闪烁窗口

时间:2014-04-29 10:17:46   收藏:0   阅读:336

思路

1)从dll中导入 FlashWindowEx函数
2)调用
 
mamicode.com,码迷
 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);
View Code

 

闪烁窗口,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!