在所有的程序中不是有一个Program.cs吗?
里面的代码是这样的:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Myschool
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Login());
}
}
}
其中在Application.Run(new Login());中Login()就是你当下运行的程序窗口!
如果你想运行其他窗口,也可以吧Login()修改为你想运行的窗口的名字!