1

是否可以将控制台添加到基于表单的 C# 应用程序?目前当我做类似的事情时

Console.WriteLine("testing");

它出现在 VS2010 的输出窗口中。我想知道是否可以将控制台附加到我的 Windows 窗体应用程序。以便输出出现在控制台中。

编辑:看起来我的第一个问题有点误导,它并没有准确说明我想要完成的事情。我刚刚在我的应用程序中添加了一个控制台,使用

    [DllImport("kernel32")]
    static extern int AllocConsole();

然而,我真正想要的是 log4net 控制台附加程序的输出显示在那个没有发生的控制台中。我的附加程序的 xml 是

  <appender name="ColoredConsoleAppender" type="log4net.Appender.ColoredConsoleAppender">
    <mapping>
      <level value="INFO" />
      <foreColor value="White" />
      <backColor value="Red, HighIntensity" />
    </mapping>
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%class %date - %message %newline" />
    </layout>
  </appender>

现在当我去喜欢

 log.info("Some log");

它仍然不会在新添加的控制台窗口中显示它。关于我如何做到这一点的任何建议?

4

2 回答 2

3

只是把它扔在那里,请确保AllocConsole() 加载 log4net 配置之前。我尝试做与您的问题类似的事情,并且在将电话转移到AllocConsole. 一旦我移动它,log4net 就会自动写入我分配的控制台。

本质上......(记住做所有不包括在这里的常规错误检查)......

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace SampleApp
{
    class Program
    {
        [DllImport("kernel32.dll", SetLastError=true, CallingConvention=CallingConvention.Winapi)]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool AllocConsole();

        [DllImport("kernel32.dll", SetLastError=true, CallingConvention=CallingConvention.Winapi)]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool FreeConsole();

        [STAThread]
        private static void Main(string[] args)
        {
            // (1) Make sure we have a console to use.
            Program.AllocConsole();
            try {
                // (2) Tell log4net to configure itself according to our app.config data.
                log4net.Config.XmlConfigurator.Configure();
                // (3) Usual WinForms startup code here.
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new SampleApp.Form1());
            } catch ( Exception ) {
                // WAT!
            }
            // (4) Remember to release the console before we exit.
            Program.FreeConsole();
        }
    }
}

不是 100% 确定为什么在分配控制台时会有所不同,但这确实为我解决了问题。

于 2013-03-26T18:01:49.207 回答
2

Just make your project a console application and create/show a form from the console application rather than the other way around.

于 2013-02-13T21:20:12.170 回答