Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个WPF应用程序,并且我想发布该应用程序的 beta 版本,为此我添加了一个Button名为“debug”,它本质上将显示/隐藏控制台窗口。每次事件发生后,我都会在控制台上写下适当的消息,这样这将帮助用户通过查看控制台上的消息来报告他们遇到的问题。
Button
对不起背景故事(如果它没有帮助)。我基本上需要知道如何在 c# 中动态显示/隐藏控制台窗口。
你认为现在我理解了这个问题吗?
[DllImport("Kernel32")] public static extern void AllocConsole(); [DllImport("Kernel32")] public static extern void FreeConsole(); private void button1_Click(object sender, EventArgs e) { AllocConsole(); Console.WriteLine("test"); }