using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set the monitor ID, window title, and the window width/height here
uint monitorID = 1;
string windowTitle = "*Calendar*";
int windowWidth = 800;
int windowHeight = 600;
// Find the window
IntPtr window = BFS.Window.GetWindowByText(windowTitle);
// Get the monitor bounds
Rectangle monitorBounds = BFS.Monitor.GetMonitorBoundsByID(monitorID);
// Move the window
BFS.Window.SetSizeAndLocation(window, monitorBounds.X, monitorBounds.Y, windowWidth, windowHeight);
}
}