using System; using System.Drawing; public static class DisplayFusionFunction { public static void Run() { // Find the Waterfox Gmail window IntPtr windowHandle = BFS.Window.GetWindowsByText("*Gmail*Waterfox*"); // Move it to monitor 3 and maximize it BFS.Window.MoveToMonitorMaximized(3, windowHandle); } }