using System;
using System.Reflection;
using System.Windows.Forms;
using System.Drawing;
 class Class1:Form
 {
  public Class1()
  {

  }
 [STAThread]
  static void Main(string[] args)
  {
   Class1 aForm=new Class1();
   aForm.Width=Screen.AllScreens[0].WorkingArea.Width+10;
   aForm.Height=Screen.AllScreens[0].WorkingArea.Height+100;
   Application.Run(aForm);
  }
 }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
猜你喜欢
  • 2021-12-12
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案