Program.cs
资源名称:HookLock.rar [点击查看]
上传用户:yzllxs
上传日期:2020-11-17
资源大小:530k
文件大小:0k
源码类别:
中间件编程
开发平台:
C#
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
- // Download by http://www.codefans.net
- namespace HookLock
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Login());
- }
- }
- }