问题描述
C#如何实现任务栏常亮:即任务栏一闪一闪,最后为高亮橘黄色。可以参考QQ发消息时,打开会话窗体后,有新消息的时候任务栏的闪动。求大侠们帮忙;
解决方案
解决方案二:
//申明api[DllImport("user32",EntryPoint="FlashWindow")]publicstaticexternvoidFlashWindow(inthwnd,boolbInvert);//调用FlashWindow(this.Handle.ToInt32(),true);
解决方案三:
[DllImport("user32",EntryPoint="FlashWindow")]publicstaticexternvoidFlashWindow(inthwnd,boolbInvert);用一个timer调用这个API
时间: 2024-12-02 22:02:34