WikiFunctions.Tools.FlashWindow C# (CSharp) Method

FlashWindow() public static method

Flashes the given form in the taskbar
public static FlashWindow ( Control window ) : void
window System.Windows.Forms.Control
return void
        public static void FlashWindow(Control window)
        {
            try
            {
                FlashWindow(window.Handle, true);
            }
            catch { }
        }

Same methods

Tools::FlashWindow ( IntPtr hwnd, bool bInvert ) : void
Tools