I am making a WPF application and I want to release a beta version of the application, for that I am adding a Button
named "debug" Which will essentially show/hide the console window.
I am writing appropriate message on the console after each event occurs so This will help users to report back the problem that they are having by looking at the messages on the console .
Sorry for the background story (if it's not helpful). I essentially need to know how to show/hide console windows dynamically in c# .
Do you think now I understood the question?
[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");
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With