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


Answers:


112

只需将AutoScrollyour的属性设置Panel为true,它将为您添加滚动条。

this.panel1.AutoScroll = true;

42
请记住,您的控件将需要锚定在面板顶部以自动产生垂直滚动条,而面板的左部则需要自动产生水平滚动条。如果将“锚定”设置为“无”,则该控件将被AutoScroll忽略。我试图将其添加到答案中,但被拒绝了。
杰森S

11
此外,您的控件也不应停靠在面板中,也不会出现滚动条。
2016年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.