C#Winform获取屏幕大小

Rectangle rect = Screen.GetWorkingArea(this);
Point p = new Point(rect.Width,rect.Height);
this.Location = p;
原文地址:https://www.cnblogs.com/sydeveloper/p/2942650.html