1-) C# RMOS - textBox1 scrollu sürekli aşağı indirmek cmd gibi ScrollToCaret
kaynak : https://stackoverflow.com/questions/898307/how-do-i-automatically-scroll-to-the-bottom-of-a-multiline-text-box
private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.SelectionStart = textBox1.Text.Length;
textBox1.ScrollToCaret();
}