using System;
using System.Drawing;
using System.Collections.Generic;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Show the list so the user can choose one
string selectedProfile = BFS.Dialog.GetUserInputListViewWithFilter("Choose the Monitor Profile to load", BFS.DisplayFusion.GetMonitorProfiles());
// Load the selected profile
BFS.DisplayFusion.LoadMonitorProfile(selectedProfile);
}
}