rajat
rajat

Reputation: 3553

How to open/close console window dynamically from a wpf application?

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# .

Upvotes: 20

Views: 19827

Answers (1)

L.B
L.B

Reputation: 116178

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");
}

Upvotes: 39

Related Questions