滚动条最大尺寸 VB.NET
如何设置面板中水平和垂直滚动条的最大范围 在 VB.NET 2008 中?
How do you set the maximum range for the horizontal and vertical scrollbar in a panel
in VB.NET 2008 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将面板的 AutoScroll 属性设置为 True。这可确保面板自动调整滚动条以保持面板内的所有控件可见。如果您不使用控件或希望在远端留有边距,则可以通过设置 AutoScrollMinSize 属性来覆盖此行为。
Set the AutoScroll property for the Panel to True. That ensures that the Panel automatically adjusts the scrollbars to keep all controls inside the panel viewable. You can override this behavior, in case you don't use controls or want a margin on the far end, by setting the AutoScrollMinSize property.