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()