I have create (I am using Visual Studio 2012) winform that have this proprities:
- Width: 812
- Height: 667
- FormBorderStyle: Fixed 3D
In right side of put vScrollBar (that have height: 599px, which is exactly the size in my fixed form). Now I whant that my form height would be heigher then 667px, and with help of scrollbar, you scroll to bottom of form. Let me put it in picture:
Now I whant to create If you scroll with scroll bar textboxs and etc. moves down, so you can see textboxes that are at the moment hidden (they are down of form).
So far I do not have any code.
Is there any tutorial that could help me. Realy thanks for help.
You can simply try
this.AutoScroll = true;
which will make automatic scrollingYou can add a
FlowLayoutPanel
and set the these properties to that:and you can see the scroll, you can use the
Panel
s and design your application.Or completely different, You can set the
this.AutoSize = true;
and drag one control to outer of form(big and small the size) and then, you can see the scrollBar of form.