在WinForm中使用Console.WriteLine()方法,可以在控制台窗口中输出信息。首先,需要将控制台窗口引入到WinForm中。可以通过在项目中添加一个控制台应用程序的引用来实现。
首先,右键点击项目,选择“添加”->“引用”->“项目”,然后选择“系统”->“控制台”。
然后,在WinForm的代码中使用以下代码:
using System;
using System.Runtime.InteropServices;
public class MyConsole
{
[DllImport("kernel32.dll",
EntryPoint = "AllocConsole",
SetLastError = true,
CharSet = CharSet.Auto,
CallingConvention = CallingConvention.StdCall)]
private static extern int AllocConsole();
[DllImport("kernel32.dll",
EntryPoint = "FreeConsole",
SetLastError = true,
CharSet = CharSet.Auto,
CallingConvention = CallingConvention.StdCall)]
private static extern int FreeConsole();
}
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MyConsole.AllocConsole();
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
MyConsole.FreeConsole();
}
private void button1_Click(object sender, EventArgs e)
{
Console.WriteLine("Hello, World!");
}
}
在这个例子中,我们通过在Form1_Load事件处理程序中调用MyConsole.AllocConsole()方法来分配控制台窗口,并在Form1_FormClosing事件处理程序中调用MyConsole.FreeConsole()方法来释放控制台窗口。当按钮被点击时,将会在控制台窗口中输出"Hello, World!"。