Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Close Window Attractively

Description
I noticed that when I use BFS.Window.Close on a minimized window, the window is briefly restored before being closed. The result is a flash of the window on the screen before it is closed. I didn't like this.
This script forces the window to minimize and then become transparent. The 300ms pause is to let the minimize animation complete. Only then is it closed, and the flash of the window restoring and closing is invisible. The end product is a more attractive close of windows.
Language
C#.net
Minimum Version
Created By
Kevin Hagerty30460
Contributors
-
Date Created
Mar 30, 2017
Date Last Modified
Mar 30, 2017

Scripted Function (Macro) Code

using System;
using System.Drawing;

// The 'windowHandle' parameter will contain the window handle for the:
//   - Active window when run by hotkey
//   - Trigger target when run by a Trigger rule
//   - TitleBar Button owner when run by a TitleBar Button
//   - Jump List owner when run from a Taskbar Jump List
//   - Currently focused window if none of these match
public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		BFS.Window.Minimize( windowHandle );
        BFS.General.ThreadWait( 300 );
        BFS.Window.SetTransparency( windowHandle, 0 );
        BFS.Window.Close( windowHandle );
	}
}