コード例 #1
0
ファイル: Form1.cs プロジェクト: chaoscode/RustIO_LiveMap_V2
        private void OutPut_TextChanged(object sender, EventArgs e)
        {
            // set the current caret position to the end
            OutPut.SelectionStart = OutPut.Text.Length;

            // scroll it automatically
            OutPut.ScrollToCaret();
        }