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

中间件编程

开发平台:

C#

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