示例#1
0
 private void LOG_TextChanged(object sender, EventArgs e) // para que cada vez que se agregue algo al log, se vea en pantalla
 {
     // set the current caret position to the end
     LOG.SelectionStart = LOG.Text.Length;
     // scroll it automatically
     LOG.ScrollToCaret();
 }
示例#2
0
 private void LOG_TextChanged(object sender, EventArgs e)
 {
     LOG.SelectionStart = LOG.Text.Length;
     LOG.ScrollToCaret();
 }