- using System;
- using System.Windows.Forms;
- namespace Archives_Center
- {
- internal static class Program
- {
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new login());
- }
- }
- }
|