How do you add a scrollbar to a Panel control with many controls in windows form application?

早过忘川 提交于 2019-11-29 01:20:12

问题


How do you add a scrollbar to a Panel control with many controls in windows form application?


回答1:


Just set the AutoScroll property of your Panel to true and it will handle adding the scrollbars for you.

this.panel1.AutoScroll = true;


来源:https://stackoverflow.com/questions/730376/how-do-you-add-a-scrollbar-to-a-panel-control-with-many-controls-in-windows-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!