如何在Windows 8中将Windows窗体适合屏幕?

时间:2015-11-10 05:26:19

标签: c# .net winforms

我正在使用Windows应用程序我已经删除了所有窗口的最大化属性。我怀疑的是如何将窗口修复到Windows 8中的工具栏。

我已经验证了以下链接:没有解决我的问题

How to fit Windows Form to any screen resolution?

检查图像

enter image description here

2 个答案:

答案 0 :(得分:0)

您必须最大化表单才能使其适合任何屏幕分辨率

答案 1 :(得分:0)

public Form1()
{
    InitializeComponent();
    this.WindowState = FormWindowState.Normal;
    this.StartPosition = FormStartPosition.Manual;
    this.Size = Screen.PrimaryScreen.WorkingArea.Size;
}