在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!"。