使用 BackGroundworker 调用控制
本文关键字:控制 调用 BackGroundworker 使用 | 更新日期: 2023-09-27 18:36:01
有奇怪的问题,无法弄清楚。
尝试在我的应用程序中将富文本框转换为日志"控制台"。当然,我在应用程序中使用线程,当然我知道Invoke。
让我们看一下我的代码。
MainForm
启动一个BackGroundWorker
来执行工作。我的BackGroundWorker
启动了很多在事件中调用DebugConsole
线程。对于这个问题,我举一个简单的例子。
bkw.DoWork += (obj, a) => DebugConsole.DoSomeWork(msg, Color.Coral);
bkw.RunWorkerAsync();
DebugConsole
是一个类,我在其中实现单例模式来获取我的DoSomeWork
函数。
让我们看看DebugConsole
类:
class DebugConsole
{
private static readonly DebugConsole instance = new DebugConsole();
public static DebugConsole Instance
{
get { return instance; }
}
public static void DoSomeWork(string msg, Color color)
{
Instance.DebugBox(msg, color);
}
private void DebugBox(string msg, Color color)
{
MainForm.DoSomeWork(msg, color);
}
}
而且你也看到我的MainForm
也实现了单例模式,调用下一个思考。
private static readonly MainForm instance = new MainForm();
public static MainForm Instance
{
get { return instance; }
}
public static void DoSomeWork(string ev, Color clr)
{
Instance.LogTextEvent(ev,clr);
}
LogTextEvent
在我的应用程序中做最后的想法,它会在我的 RichTextBox 中写入一条消息,这就是问题所在。它不会写入/调用我的控件。
public void LogTextEvent(string eventText, Color textColor)
{
var nDateTime = DateTime.Now.ToString("hh:mm:ss tt") + " - ";
if (rtbDebug.InvokeRequired)
{
rtbDebug.BeginInvoke((MethodInvoker) delegate
{
rtbDebug.SelectionStart = rtbDebug.Text.Length;
rtbDebug.SelectionColor = textColor;
if (rtbDebug.Lines.Length == 0)
{
rtbDebug.AppendText(nDateTime + eventText);
rtbDebug.ScrollToCaret();
rtbDebug.AppendText(Environment.NewLine);
}
else
{
rtbDebug.AppendText(nDateTime
+ eventText
+ Environment.NewLine);
rtbDebug.ScrollToCaret();
}
});
}
else
{
rtbDebug.SelectionStart = rtbDebug.Text.Length;
rtbDebug.SelectionColor = textColor;
if (rtbDebug.Lines.Length == 0)
{
rtbDebug.AppendText(nDateTime + eventText);
rtbDebug.ScrollToCaret();
rtbDebug.AppendText(Environment.NewLine);
}
else
{
rtbDebug.AppendText(nDateTime
+ eventText
+ Environment.NewLine);
rtbDebug.ScrollToCaret();
}
}
}
问题:在我的控制范围内什么都没有发生。
- 我做错了什么?
- 有人可以告诉我我错过了什么吗?
试试这个
this.Invoke((MethodInvoker)delegate
{
Instance.LogTextEvent(ev,clr);
});