private delegate void de_OutputMessage(string str); public void OutputMessage(string str) { if (textBoxMessage.InvokeRequired) { this.BeginInvoke(new ...
private delegate void de_OutputMessage(string str);
public void OutputMessage(string str)
{
if (textBoxMessage.InvokeRequired)
{
this.BeginInvoke(new de_OutputMessage(OutputMessage), str);
}
else
{
if (textBoxMessage.TextLength > textBoxMessage.MaxLength - 10)
{
textBoxMessage.Clear();
}
textBoxMessage.AppendText(DateTime.Now.ToString("[yyyy-MM-dd HH:mm:ss] ") + str);
textBoxMessage.AppendText(Environment.NewLine);
textBoxMessage.Select(textBoxMessage.TextLength, 1);
textBoxMessage.ScrollToCaret();
// LogHelper.WriteMessage(str);
}
}