在Visual Studio中,我希望它在我调试时首先打开另一个表单,我该怎么做?

时间:2013-12-05 16:31:25

标签: visual-studio-2012

我在课程上犯了一个错误,我需要更改它,以便VS在我调试时打开另一个表单

有人可以帮我这么做吗?

例如,现在当我需要它首先打开一个启动页面时,它会直接进入员工登录..

我该怎么做?非常感谢帮助谢谢。

1 个答案:

答案 0 :(得分:4)

您没有说出您使用的语言,因此我将在C#和VB.net中为您提供示例

在C#中,您有一个Program.cs文件,您可以编辑Application.Run语句来更改启动表单:

static class Program
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Form1()); // Change this to your Startup Form's Name.
    }
}

它位于您的解决方案资源管理器中。

enter image description here

如果是VB.net,您可以在Project Property的

中更改启动表单

enter image description here

如果这些都不是您想要的,请编辑您的问题,并提供有关您尝试做什么,尝试使用的语言等的更多信息。