C# 为WinForm应用程序分配控制台

C# 为WinForm应用程序分配控制台,c#,operating-system,C#,Operating System,我使用以下代码为WinForm应用程序分配控制台。控制台窗口成功显示,并且输出在那里。但当我关闭控制台窗口时,我的WinForm应用程序同时关闭。为什么?我想保留WinForm窗口 private void btn_to_console_Click(object sender, EventArgs e) { if (NativeMethods.AllocConsole()) { lbl_console_alloc_result.Text = "Console al

我使用以下代码为WinForm应用程序分配控制台。控制台窗口成功显示,并且输出在那里。但当我关闭控制台窗口时,我的WinForm应用程序同时关闭。为什么?我想保留WinForm窗口

private void btn_to_console_Click(object sender, EventArgs e)
{
    if (NativeMethods.AllocConsole())
    {
        lbl_console_alloc_result.Text = "Console allocation successfully!";
        IntPtr stdHandle = NativeMethods.GetStdHandle(NativeMethods.STD_OUTPUT_HANDLE);
        Console.WriteLine("from WinForm to Console!");
        lbl_console_alloc_result.Text = Console.ReadLine();
    }
    else
        lbl_console_alloc_result.Text = "Console allocation failed!";
}

[System.Runtime.InteropServices.DllImportAttribute("kernel32.dll", EntryPoint = "GetStdHandle")]
public static extern System.IntPtr GetStdHandle(Int32 nStdHandle);

/// Return Type: BOOL->int
[System.Runtime.InteropServices.DllImportAttribute("kernel32.dll", EntryPoint = "AllocConsole")]
[return: System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)]
public static extern bool AllocConsole();

提前感谢…

关闭控制台窗口将关闭任何应用程序-无论是控制台应用程序、Windows窗体、本机Windows应用程序还是WPF应用程序。这是控制台窗口的一个“功能”


如果您不希望出现这种行为,您应该创建一个自定义窗口来显示输出,而不是使用控制台窗口。否则,您需要调用而不是关闭窗口来将应用程序与控制台窗口分离。

检查此线程:谢谢,里德,谢谢。看来我需要一本关于Win32 API的字典。:D