应该设置根据桌面大小调整窗体大小,主要用到Screen类获取桌面的大小,Screen类表示单个系统上的一个或者多个设备,其PrimaryScreen属性用来获取主显示,该属性返回一个Screen对象,调用Screen对象的WorkingArea属性可以获取显示器的工作区,WorkingArea属性的语法格式如下:public Rectangle WorkingArea{get;}
private void Form1_Load(object sender, EventArgs e)
{
int DeskWidth = Screen.PrimaryScreen.WorkingArea.Width;//获取桌面的宽度
int DeskHeight = Screen.PrimaryScreen.WorkingArea.Height;//获取桌面的高度
this.Width = Convert.ToInt32(DeskWidth);//设置窗体宽度
this.Height = Convert.ToInt32(DeskHeight);//设置窗体高度
}