C# 实现窗体全屏与正常显示

利用 FormBorderStyle.None 与 WindowState.Maximized 设置窗体全屏显示,this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;

this.WindowState = FormWindowState.Maximized;

rar 文件大小:33.27KB