如何在 C# 中使用 max/min/close 按钮创建全屏表单?
How to create a full-screen form with max/min/close button in c#?
我通过以下方式全屏显示:FormBorderStyle = FormBorderStyle.None;
但是没有max/min/close按钮?如何获得?
如果您希望全屏表单保留控件,请将表单的 WindowState 属性 设置为最大化而不是移除表单边框。
private void Form1_Shown(object sender, EventArgs e)
{
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
如果您真的想要一个没有边框的全屏表单,最好的方法可能是自定义用户控件来模拟标准 min/max/close 功能。
我通过以下方式全屏显示:FormBorderStyle = FormBorderStyle.None; 但是没有max/min/close按钮?如何获得?
如果您希望全屏表单保留控件,请将表单的 WindowState 属性 设置为最大化而不是移除表单边框。
private void Form1_Shown(object sender, EventArgs e)
{
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
}
如果您真的想要一个没有边框的全屏表单,最好的方法可能是自定义用户控件来模拟标准 min/max/close 功能。