using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Get all windows handles of every window currently open
IntPtr[] handles = BFS.Window.GetAllWindowHandles();
// Loop through all windows
foreach (IntPtr window in handles)
{
// Check if a window is transparent
if (BFS.Window.GetTransparency(window) < 100)
{
// Set transparency to 100
BFS.Window.SetTransparency(window, 100);
}
}
}
}