我有一个Windows窗体。我正在使用以下代码设置它的大小。我希望的行为是让它占据主显示器的整个宽度和一半高度。
this.Location = new Point(0, 0);
this.WindowState = FormWindowState.Normal;
this.Size = new System.Drawing.Size(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height / 2);
问题是右侧表格上有一个空格(它没有占据整个屏幕)。有没有人有什么建议?
由于
答案 0 :(得分:0)
尝试使用
Screen.PrimaryScreen.WorkingArea