C#窗体中VScrollBar的问题
我想请问一下,在FORM里面的有个groupBox,在它里面放了laber 和 textbox,每个laber 对应一个textbox.做了很多这样的laber 和 textbox,现在就想在旁边放一个VScrollBar,实现滚动查看laber 和 textbox.怎么做?哪位大哥教一下,谢谢了private void InitializeMyScrollBar() { // Create and initialize a VScrollBar. VScrollBar vScrollBar1 = new VScrollBar(); // Dock the scroll bar to the right side of the form. vScrollBar1.Dock = DockStyle.Right; // Add the scroll bar to the form. Controls.Add(vScrollBar1); }