使用水平滚动条滚动面板
如何将水平滚动条应用于面板?
我正在开发二维平铺地图编辑器,并使用面板来保存内容。当我的地图比面板大时,它就会消失并变得不可见,是否可以应用自定义滚动条?
How can I apply a horizontal scroll bar to a Panel?
I'm working on 2d tiled map editor and I'm using a Panel to hold the contents. When my map is bigger than my panel it just goes off and becomes invisible, would it be possible to apply custom scroll bars?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
面板
源自ScrollableControl
。所以有一个属性AutoScroll< /代码>
。只需将其设置为
true
,其余的就会自动完成。The
Panel
is derived fromScrollableControl
. So there is a propertyAutoScroll
. Just set it totrue
and the rest will be done automagically.虽然这不再适用,因为问题已针对 winforms 进行了澄清,但在 Web 表单中,您可以设置 ScrollBars 属性到 滚动条.水平。
While this no longer applies as the question has been clarified to target winforms, in Web Forms you can set the ScrollBars property to ScrollBars.Horizontal.