我想在Winform中嵌入一个控制台窗口。有没有办法做到这一点?
答案 0 :(得分:8)
你需要做的就是调用windows API函数AllocConsloe然后使用普通的控制台类,这里是表单代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace waTest
{
public partial class Form1 : Form
{
[DllImport("Kernel32.dll")]
static extern Boolean AllocConsole( );
public Form1( )
{
InitializeComponent();
}
private void Form1_Load( object sender, EventArgs e )
{
if ( !AllocConsole() )
MessageBox.Show("Failed");
Console.WriteLine("test");
string input = Console.ReadLine();
MessageBox.Show(input);
}
}
}
答案 1 :(得分:3)
哦!您想要窗口中的控制台。您可以在stdout和stdin中编写自己的和管道输入。或者你可以嵌入powershell,但没有控制。 - rerun 2010年10月12日19:49
答案 2 :(得分:2)
你可以基本上通过以下方式做到这一点:
您需要直接为此调用API(您需要SetParent和SetWindowPos)。这是一篇关于如何使用示例进行操作的文章:
http://www.geekpedia.com/tutorial230_Capturing-Applications-in-a-Form-with-API-Calls.html