我正在尝试将Console
输出转发到Windows窗体TextBox
控件。因此,我在TextWriter
上附加了自定义Console
,将输出附加到TextBox
。
但是我认为TextWriter
或TextBox
在外部类中是不可访问的。如何解决这个问题?检查下面的代码:
partial class Form1 : Form
{
public StringWriter _TextWriter;
public Form1()
{
InitializeComponent();
this._TextWriter = new TextBoxStreamWriter(this.textBox1);
Console.SetOut(this._TextWriter);
Console.WriteLine("This text does appear in the TextBox, works perfect.");
Test ConsoleOutputExternalClass = new Test();
}
}
public class TextBoxStreamWriter : StringWriter
{
TextBox _output = null;
public TextBoxStreamWriter(TextBox output)
{
this._output = output;
}
public override void WriteLine(string value)
{
base.WriteLine(value);
this._output.AppendText(value.ToString());
}
public override Encoding Encoding
{
get
{
return Encoding.UTF8;
}
}
}
private class Test
{
public Test()
{
// HERE I GET AN EXCEPTION ERROR !!
Console.WriteLine("System.IO.IOException: 'The handle is invalid.'");
}
}
答案 0 :(得分:1)
如我在实验后发现的那样,该问题还有另一个原因导致了意外。在我的程序中,我使用Console.Clear()
删除了所有打印的行,但是显然这也破坏了到定制集输出流的链接。
毕竟这不会清除TextBox,我应该使用TextBox.Clear()
。
对此我感到抱歉,因为在这种情况下我的问题不是重点,问题似乎出在其他地方。实际上,我的问题中的代码可以正常工作,因为没有调用Console.Clear()
,但是我只是还没有找到真正导致问题的原因。
真正的问题是:如何“覆盖” Console.Clear()
以清除文本框?但这是另一个话题。