Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AppendTextを使用して更新を続ける複数行のテキストボックスであるログがあります。新しいデータが到着したときに、単に表示されるのではなく、下からスムーズに押し寄せるような効果を作りたいと思います。どうすればこのちらつきをなくすことができますか?私が持っていたアイデアの1つは、テキストボックスの高さを高くしてから、テキストボックスのy座標を変更することですが、悪いアイデアのようです。助言がありますか?ありがとう
テキストボックスを更新した後にこれを試してください
// Textbox update code textBox1.SelectionStart = textBox1.Text.Length; textBox1.ScrollToCaret();