In C#, what is a good way to direct console output to Text-box in Windows Form?
If I have an existing program that has console.WriteLine , do I need to overload the function in Windows Form Text-box?
|
Create a text writer which writes to a text box:
And redirect Console output to this writer:
|
|||||
|
That ought to do it. |
|||
|
|
Console.WriteLine("Something")in your code, it should pop-up a MessageBox? – Aniket Feb 10 at 21:44MessageBoxis that thing that pops up and requires user input,TextBoxis an input field. Neither of them will make your users very happy I think :) – bas Feb 10 at 21:44