private void SetInfoText(string text) { if (TbxInfo.InvokeRequired) { BeginInvoke(new SetInfoTextDelegate(SetInfoText), new object[] { text }); } else { TbxInfo.AppendText(text); } }
private void AppendInfo(string text, params object[] args) { TbxInfo.AppendText(string.Format(text, args) + Environment.NewLine); TbxInfo.SelectionStart = TbxInfo.Text.Length; TbxInfo.ScrollToCaret(); }