Moved TaskbarButtonMonitor

This commit is contained in:
Dan Clark
2024-11-02 21:06:58 +00:00
parent 81e39f9895
commit 7a4a299262
12 changed files with 224 additions and 31 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ internal static class SystemInformationHelper
private static Rect GetWorkingArea()
{
var rect = new RECT();
RECT rect = new RECT();
SystemParametersInfo(SPI_GETWORKAREA, 0, ref rect, 0);
return new Rect(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);