如何获取 RichTextBox 垂直滚动条的最大值?
我需要获取 Richtextbox 垂直滚动条的最大值,以便我可以滚动到滚动条最大值的百分比。
I need to get the maximum value of a richtextbox's vertical scrollbar so that I can scroll to a percentage of the scrollbar's maximum value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我这样做的方式是,我将 RichTextBox 放在 ScrollViewer 中,例如
然后从代码隐藏中,您可以读取 sv.ExtentHeight 的值,获取其百分比,然后调用 sv.ScrollToVerticalOffset() 进行移动将滚动条移动到该位置。
The way I've done it, I have the RichTextBox inside of a ScrollViewer, e.g.
Then from code-behind, you can read the value of sv.ExtentHeight, take a percentage of it, and then call sv.ScrollToVerticalOffset() to move the scrollbar to that position.