我需要组织气球消息弹出循环,如果此时显示气球提示,则应将每条消息添加到前一个消息(消息应通过“\ n”字符彼此分开)。
所以我写了下面的代码:
private void ballonMessagesProcessor(CancellationToken token)
{
notifyIcon.BalloonTipClosed += new EventHandler(delegate(Object sender, EventArgs e)
{
notifyIcon.BalloonTipText = "";
});
while (true)
{
string message;
while (balloonMessages.TryDequeue(out message))
{
var localMessageCopy = message;
if (!string.IsNullOrWhiteSpace(notifyIcon.BalloonTipText))
{
localMessageCopy = "\n" + localMessageCopy;
}
BeginInvoke((MethodInvoker)delegate()
{
notifyIcon.BalloonTipText += localMessageCopy;
notifyIcon.ShowBalloonTip(5000);
});
}
var cancelled = token.WaitHandle.WaitOne(TimeSpan.FromMilliseconds(100.0));
if (cancelled)
{
return;
}
}
}
不幸的是,它有一些多线程问题。例如,notifyIcon.BallonTipText
可以在执行string.IsNullOrWhiteSpace(notifyIcon.BalloonTipText)
行之后立即从事件处理程序更改,因此它将导致在气球提示的开头添加不必要的“\ n”字符。
我认为还有很多其他问题,但我找不到它们。
我该如何解决?解决问题的正确方法是什么?
提前致谢。