如题。
我还不会做游戏,想从GDI+学起,
MSDN上好像也没有介绍全屏的文章。
请高手们为我指指路。

解决方案 »

  1.   

    到http://dotnet.aspx.cc去看看,好像有
      

  2.   

    简单的模拟全屏
    简单可行的方法。猜测的。将windows forms启动的时候设置成topmost.
    forms的属性formborderStyle设置成none. forms的大小设置成当前分辨率大小。
    form的位置设置成0.0..。你可以试试
      

  3.   

    WinForm:
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
                this.TopMost = true;
                this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
      

  4.   

    将Form的FormBorderStyle设为None然后最大化窗体就是全屏。
      

  5.   

    骗人,还能看到西系统栏怎么叫全屏呢?
    除了要设置
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
                this.TopMost = true;
                this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
    还要加上下面的private void Form1_Load(object sender, System.EventArgs e)
    {
    Rectangle rect = Screen.PrimaryScreen.Bounds;
    this.Size = rect.Size;
    this.Location = rect.Location;
    this.TopMost = true;
    }