flash form taskbar button
Published: 21. December 2008 | Updated: 21. December 2008License: Microsoft Public License (MS-PL)
Categories: Windows » Win32, Winforms
Tags: C# UI Win32 Windows Winforms
Import namespace
using System.Runtime.InteropServices;
Win32
[DllImport("user32.dll")] static extern bool FlashWindow(IntPtr hwnd, bool bInvert);
Code
In form
IntPtr handle = this.Handle; FlashWindow(handle, false);
| Send us feedback about this snippet » |





