.net .netcore在winform中使用Console.WriteLine()

avatar
作者
筋斗云
阅读量:1

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

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!