using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set your website and target monitor ID here
string website = "https://www.displayfusion.com";
uint targetMonitor = 2;
// Open the website window
IntPtr window = BFS.Web.OpenUrlNewWindow(website);
// Move it to the specified monitor
BFS.Window.MoveToMonitorMaximized(targetMonitor, window);
}
}