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.
垂直スクロールバーを持つ多くのテキストを含む TextBox コントロールがあり、コントロールを非表示/表示するたびに、スクロールバーの位置は変わりません。テキストの先頭にあるかのように、スクロールバーの位置をテキストボックスの上部に変更する方法を理解しようとしています。
どうすればいいですか?
WinForms を使用している場合、これが可能な解決策です。
YourTextBox.Select(0, 0) YourTextBox.ScrollToCaret()
WPF を使用している場合:
YourTextBox.ScrollToHome()