对窗体如下设置就可以得到一个全屏的了.

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;

namespace WindowsApplication5 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;             this.WindowState = System.Windows.Forms.FormWindowState.Maximized;         }

            } }

相关文章:

  • 2021-08-19
  • 2021-12-24
  • 2022-02-12
  • 2021-05-22
  • 2021-06-03
  • 2022-12-23
猜你喜欢
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2021-04-20
  • 2022-12-23
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案