private void ShowMsg(string msg) { if (TBX_Board.Lines.Length > 999) { ClearMsg(); } TBX_Board.AppendText($"{DateTime.Now:yyyy-MM-dd hh:mm:ss}: {msg}"); if (!msg.EndsWith(Environment.NewLine)) { TBX_Board.AppendText(Environment.NewLine); } }
private void ClearMsg() { TBX_Board.Clear(); }