今天我们小组共同完成了对Program.cs的编写,并且讨论了对主窗体form的改进。

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Windows.Forms;
 5 
 6 namespace PlayPlane_01
 7 {
 8     static class Program
 9     {
10         /// <summary>
11         /// 应用程序的主入口点。
12         /// </summary>
13         [STAThread]
14         static void Main()
15         {
16             Application.EnableVisualStyles();
17             Application.SetCompatibleTextRenderingDefault(false);
18             Application.Run(new Form1());
19         }
20     }
21 }

 

相关文章:

  • 2022-01-09
  • 2021-09-15
  • 2022-02-24
  • 2021-08-01
  • 2021-05-31
  • 2021-12-24
  • 2021-08-06
  • 2022-03-05
猜你喜欢
  • 2021-10-01
  • 2021-08-18
  • 2022-01-28
  • 2021-10-31
  • 2022-01-04
  • 2021-09-18
相关资源
相似解决方案