{ "name": "Move Windows Back to Monitors", "language": 0, "code": "using System;\r\nusing System.Collections.Generic;\r\nusing System.Drawing;\r\n\r\npublic static class DisplayFusionFunction\r\n{\r\n public static void Run(IntPtr windowHandle)\r\n {\r\n // Build a list of monitors\r\n List monitors = new List();\r\n foreach (uint id in BFS.Monitor.GetMonitorIDs())\r\n {\r\n monitors.Add(new MonitorInfo(id));\r\n }\r\n\r\n // Process each visible window.\r\n foreach (IntPtr hWnd in BFS.Window.GetVisibleWindowHandles())\r\n {\r\n // Skip windows that should be ignored.\r\n if (IsDisplayFusionWindowOrHiddenExplorerWindow(hWnd))\r\n continue;\r\n\r\n // Get the window's current bounds.\r\n Rectangle windowRect = BFS.Window.GetBounds(hWnd);\r\n\r\n // If the window is not completely on one of our monitors, snap it back.\r\n if (IsWindowFullyOnScreen(windowRect, monitors))\r\n\t\t\t\tcontinue;\r\n\t\t\t\r\n Rectangle snappedRect = GetSnappedRectangle(windowRect, monitors);\r\n\t\t\tBFS.Window.SetLocation(hWnd, snappedRect.X, snappedRect.Y); \r\n }\r\n }\r\n\r\n /// \r\n /// Returns true if the window rectangle is completely contained within any monitor's working area.\r\n /// \r\n private static bool IsWindowFullyOnScreen(Rectangle windowRect, List monitors)\r\n {\r\n foreach (MonitorInfo monitor in monitors)\r\n {\r\n if (monitor.Bounds.Contains(windowRect))\r\n return true;\r\n }\r\n return false;\r\n }\r\n\r\n /// \r\n /// Calculates a new rectangle for the window such that its edges are snapped inside the best monitor's work area.\r\n /// \r\n private static Rectangle GetSnappedRectangle(Rectangle windowRect, List monitors)\r\n {\r\n MonitorInfo bestMonitor = null;\r\n int bestIntersectionArea = -1;\r\n\r\n // Choose the monitor with the largest intersection area.\r\n foreach (MonitorInfo monitor in monitors)\r\n {\r\n Rectangle intersection = Rectangle.Intersect(windowRect, monitor.Bounds);\r\n int area = intersection.Width * intersection.Height;\r\n if (area > bestIntersectionArea)\r\n {\r\n bestIntersectionArea = area;\r\n bestMonitor = monitor;\r\n }\r\n }\r\n // If there's no intersection, default to the first monitor.\r\n if (bestMonitor == null)\r\n bestMonitor = monitors[0];\r\n\r\n Rectangle workArea = bestMonitor.Bounds;\r\n Rectangle newRect = windowRect;\r\n\r\n // Snap horizontally.\r\n if (newRect.Left < workArea.Left)\r\n newRect.X = workArea.Left;\r\n else if (newRect.Right > workArea.Right)\r\n newRect.X = workArea.Right - newRect.Width;\r\n\r\n // Snap vertically.\r\n if (newRect.Top < workArea.Top)\r\n newRect.Y = workArea.Top;\r\n else if (newRect.Bottom > workArea.Bottom)\r\n newRect.Y = workArea.Bottom - newRect.Height;\r\n\r\n return newRect;\r\n }\r\n\r\n /// \r\n /// Determines if the window is a DisplayFusion or hidden Explorer window that should be ignored.\r\n /// \r\n private static bool IsDisplayFusionWindowOrHiddenExplorerWindow(IntPtr window)\r\n {\r\n // Ignore any DisplayFusion windows (title bar buttons, etc.)\r\n // Ignore pesky hidden explorer.exe windows\r\n string windowClass = BFS.Window.GetClass(window);\r\n if ((windowClass.StartsWith(\"DF\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"EdgeUiInputTopWndClass\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"EdgeUiInputWndClass\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"NativeHWNDHost\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"ModeInputWnd\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"MetroGhostWindow\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"ImmersiveLauncher\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"ApplicationManager_ImmersiveShellWindow\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"Shell_TrayWnd\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"WorkerW\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"Progman\", StringComparison.OrdinalIgnoreCase)) ||\r\n (windowClass.Equals(\"SearchPane\", StringComparison.OrdinalIgnoreCase)))\r\n {\r\n return true;\r\n }\r\n return false;\r\n }\r\n}\r\n\r\n/// \r\n/// MonitorInfo encapsulates a monitor's work area and center point using DisplayFusion's monitor information.\r\n/// \r\npublic class MonitorInfo\r\n{\r\n public Rectangle Bounds { get; private set; }\r\n public uint Id { get; private set; }\r\n\r\n public MonitorInfo(uint id)\r\n {\r\n this.Id = id;\r\n this.Bounds = BFS.Monitor.GetMonitorWorkAreaByID(id);\r\n }\r\n}", "description": "", "references": "Microsoft.VisualBasic.Core.dll|Microsoft.Win32.Primitives.dll|Microsoft.Win32.Registry.dll|netstandard.dll|Newtonsoft.Json.dll|System.Collections.Concurrent.dll|System.Collections.dll|System.Collections.Immutable.dll|System.Collections.NonGeneric.dll|System.Collections.Specialized.dll|System.ComponentModel.Primitives.dll|System.ComponentModel.TypeConverter.dll|System.Console.dll|System.Core.dll|System.Data.dll|System.Diagnostics.Process.dll|System.dll|System.Drawing.Common.dll|System.Drawing.dll|System.Drawing.Primitives.dll|System.IO.Compression.dll|System.IO.dll|System.IO.FileSystem.Watcher.dll|System.Linq.dll|System.Linq.Expressions.dll|System.Linq.Parallel.dll|System.Linq.Queryable.dll|System.Management.dll|System.Net.dll|System.Net.Primitives.dll|System.Net.Requests.dll|System.Net.WebClient.dll|System.Net.WebHeaderCollection.dll|System.Private.CoreLib.dll|System.Private.Uri.dll|System.Private.Xml.dll|System.Runtime.dll|System.Runtime.InteropServices.dll|System.Runtime.Serialization.Formatters.dll|System.Security.Cryptography.Algorithms.dll|System.Security.Cryptography.Csp.dll|System.Security.Cryptography.dll|System.Security.Cryptography.Primitives.dll|System.Text.Json.dll|System.Text.RegularExpressions.dll|System.Threading.dll|System.Threading.Tasks.dll|System.Threading.Tasks.Parallel.dll|System.Web.dll|System.Web.HttpUtility.dll|System.Windows.Extensions.dll|System.Windows.Forms.dll|System.Windows.Forms.Primitives.dll|System.Xml.dll" }