C#0008--制作闪烁的窗体
技术要点
Windows提供了一个API函数FlashWIndow,该函数可以使窗体闪烁一下。FlashWIndow函数在C#中声明如下:
[System.Runtime.InteropServices.DllImportAttribute("user32.dll")]
public static extern bool FlashWindow(IntPtr handle, bool bInvert);
参数说明如下。
handle:表示将要闪烁的窗体。
bInvert:是否恢复状态。
[System.Runtime.InteropServices.DllImportAttribute("user32.dll")]
public static extern bool FlashWindow(IntPtr handle, bool bInvert);
参数说明如下。
handle:表示将要闪烁的窗体。
bInvert:是否恢复状态。
利用该函数只能使窗体闪烁一下,如果让窗口不停地闪烁,就需要用一个Timer控件每隔一段时间就调用该函数使窗体闪烁。
实现过程
1. VS新建窗体应用程序,添加PictureBox、Button和Timer控件。设置相应属性。
相应代码
测试运行OK。
举一反三
根据本实例,读者可以开发以下程序。
1. 利用Visible属性制作一个闪烁的图片。
2. 制作一个闪烁的按钮。
1. 利用Visible属性制作一个闪烁的图片。
2. 制作一个闪烁的按钮。