如何在窗体应用程序中向具有多个控件的 Panel 控件添加滚动条?

如何在窗体应用程序中向具有多个控件的 Panel 控件添加滚动条?

88011 次浏览

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

this.panel1.AutoScroll = true;