如標題
參考影片
https://www.youtube.com/watch?v=5E2Iufh3_BE
前端的msgBox屬性
1. 屬性Scrollbar 要設定Vertical
2.屬性 Multiline 要設定 True...
private void AddInfo(string msg)
{
string fMsg = String.Format("[{0}] {1} {2}", DateTime.Now.ToString("HH:mm:ss"), msg, Environment.NewLine);
msgBox.Text += fMsg;
msgBox.SelectionStart = msgBox.TextLength;
msgBox.ScrollToCaret();
}
以上文章僅用紀錄資料使用.....