Program.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:0k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. namespace DockSample
  5. {
  6.     static class Program
  7.     {
  8.         /// <summary>
  9.         /// The main entry point for the application.
  10.         /// </summary>
  11.         [STAThread]
  12.         static void Main()
  13.         {
  14.             Application.EnableVisualStyles();
  15.             Application.SetCompatibleTextRenderingDefault(false);
  16.             Application.Run(new MainForm());
  17.         }
  18.     }
  19. }