using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Prompt for the text to search for
string searchText = BFS.Dialog.GetUserInput("Enter part of the window title:", "");
// Focus the window that contains that text in the title
BFS.Window.Focus(BFS.Window.GetWindowByText("*" + searchText + "*"));
}
}