闪烁应用程序窗体,不用timer控件,C#源代码[DllImport("User32")] public static extern bool FlashWin
闪烁应用程序窗体,不用timer控件,C#源代码[DllImport("User32")] public static extern bool FlashWindow(IntPtr hWnd, bool bInvert); try { int MyTimes = 50; int MyTime = 50; for (int MyCount = 0; MyCount < MyTimes; MyCount++) { FlashWindow(this.Handle, true); System.Threading.Thread.Sleep(MyTime); } } catch (Exception MyEx) { System.Windows.Forms.MessageBo x.Show(MyEx.Message, "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } VisualStudio2008创建
文件列表
coruscate.rar
(预估有个23文件)
coruscate
coruscate.suo
13KB
readme.txt
747B
coruscate
coruscate.csproj
4KB
Form1.cs
1KB
bin
Debug
coruscate.vshost.exe.manifest
490B
coruscate.pdb
22KB
用户评论