如何从Console运行Windows窗体?

时间:2013-01-28 07:05:26

标签: c# winforms

我是Windows窗体应用程序的新手。我创建了一个Windows窗体。我的解决方案的切入点如下所示

    static void Main(string[] args)
    {

        Boolean bConsole = false;
        for (int nArg = 0; nArg < args.Length; nArg++)
        {
            if (args[nArg].Equals("-Console", StringComparison.OrdinalIgnoreCase))
            {
                bConsole = true;
            }
        }

        if (bConsole)
        {
            Form_Main form = new Form_Main();
            form.Form_Main_Console();
        }
        else
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form_Main());
        }
    } 

该应用程序适用于Windows窗体。我怎样才能从控制台运行它? 谁可以帮我解决这个问题?

1 个答案:

答案 0 :(得分:3)

将您的应用程序编译为二进制文件(假设是MyApp.exe)。

现在在cmd.exe中浏览到同一目录(cd / path / to / exe)并输入“MyApp.exe cmd1 cmd2”。

cmd1和cmd2在Main函数的“string [] args”参数中显示为字符串。不管他们如何,请与他们合作。

例如:

cd %ProgramFiles%/Path/To/App

MyApp -Console whatever