我必须将值从一个类传递给 RichTextBox。这是我的代码。我必须将值传递到文本框、列表框等任何工具中,但我不知道如何。我必须使用委托将 md 值传递给这两种方法并传递给同一个富文本框。
namespace delegateEx2
{
public class MyClass : Form1
{
delegate void MyDelegate(string MyString);
public void ShowThoseMessages()
{
MyDelegate md = new MyDelegate(log1);
md += log2;
md("Error Log Text");
}
public void log1(string message) {
//what can I write here to pass the md into the RichTextBox on Form1.cs
//I tried something like Systems.Windows.Form.rtxblog but did not work
//......................................
}
public void log2(string message2)
{
//.....................................
}
}