コード例 #1
0
ファイル: MainForm.cs プロジェクト: Brett1981/PopcornViewer
 // Scroll chat when text changed
 private void ChatHistory_TextChanged(object sender, EventArgs e)
 {
     ChatHistory.Font           = new Font("Microsoft Sans Serif", 8, FontStyle.Regular);
     ChatHistory.SelectionFont  = new Font("Microsoft Sans Serif", 8, FontStyle.Regular);
     ChatHistory.SelectionStart = ChatHistory.Text.Length;
     ChatHistory.ScrollToCaret();
 }