如题 谢谢

解决方案 »

  1.   

    form1.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;//
                form1.WindowState = FormWindowState.Maximized;//
      

  2.   

    最佳状态不知道是什么状态,屏幕分辨率可以这样获得
    Screen.PrimaryScreen.Bounds.Width
    Screen.PrimaryScreen.Bounds.Height
      

  3.   

    我也在找这个方法...
    目前只知道这两个方法
    全屏:
    this.FormBorderStyle = FormBorderStyle.None; 
    this.WindowState = FormWindowState.Maximized; 
    显示窗体:
    this.FormBorderStyle = FormBorderStyle.Sizable ;
    this.WindowState = FormWindowState.Normal;