为 WinForm 应用程序分配控制台 [英] Allocate a console for a WinForm application

查看:24
本文介绍了为 WinForm 应用程序分配控制台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I use the following code to allocate a Console for a WinForm application. The Console window shows up successfully and the output is there. But when I close the Console window, my WinForm applicaion is closed at the same time. Why? I want to keep the WinForm window.

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 应用程序.这是控制台窗口的功能".

Closing a Console Window will shutdown any application -whether a console application, Windows Forms, native Windows app, or WPF application. This is a "feature" of Console windows.

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

If you don't want this behavior, you should, instead, just make a custom window to display your output instead of using a Console Window. Otherwise, you need to call FreeConsole instead of closing the Window to detach your application from the Console window.

这篇关于为 WinForm 应用程序分配控制台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆