I've been searching for a while for a tutorial on getting just a single vertical scrollbar on a panel (and getting it to work right, etc.) I am trying to make a panel scrollable, but vertically scrollable only (so AutoScroll won't work because the child controls go past the left edge and must). So how is this done? This has probably been asked before but I can't find it anywhere.

link|improve this question

So you want to have only the vertical scroll when it's necessary? So setting the Scrollbars property to Vertical won't work? – debracey May 22 '11 at 20:29
@debracey There isn't any property called Scrollbars on my Panel and it doesn't show up in Intellisense. I have seen other people talk about it so I think it exists but I'm just doing it wrong. I get this error for this line: panel1.Scrollbars = ScrollBars.Vertical; - 'System.Windows.Forms.Panel' does not contain a definition for 'Scrollbars' and no extension method 'Scrollbars' accepting a first argument of type 'System.Windows.Forms.Panel' could be found (are you missing a using directive or an assembly reference?) – Seth Carnegie May 22 '11 at 20:33
@debracey I am using VS 2010 Pro. – Seth Carnegie May 22 '11 at 20:33
feedback

1 Answer

up vote 3 down vote accepted

Assuming you're using winforms, default panel components does not offer you a way to disable the horizontal scrolling components. A workaround of this is to disable the auto scrolling and add a scrollbar yourself:

ScrollBar vScrollBar1 = new VScrollBar();
vScrollBar1.Dock = DockStyle.Right;
vScrollBar1.Scroll += (sender, e) => { panel1.VerticalScroll.Value = vScrollBar1.Value; };
panel1.Controls.Add(vScrollBar1);

Detailed discussion here: http://social.msdn.microsoft.com/Forums/en-IE/winforms/thread/6b9c2c72-e91a-40f0-a835-c12328490c0c

link|improve this answer
I really don't want to do this 'hack'. How can I do it manually with a VScrollBar component? – Seth Carnegie May 22 '11 at 20:35
Added a small sample. – Teoman Soygul May 22 '11 at 20:37
@Teoman that example doesn't help, I can do that with the forms designer. What is the formula for determining what the max/min values of the scroll bar should be, how do I offset controls inside the panel when the scrollbar scrolls down, etc? – Seth Carnegie May 22 '11 at 20:42
All you need is to sync VerticalScroll.Value properties with the Scroll event. Updated the code. Note that to get the scroll effect, there should be some elements overflowing from the bottom edge of the panel (i.e. there should be some not-visible elements to scroll to). – Teoman Soygul May 22 '11 at 20:52
@Teoman How do I get the size of the grip in the scroll bar to change as there becomes more or less things "overflowing" from the bottom? And I just tried code very similar to yours and when I scroll down, everything jerks violently all around and doesn't scroll (even though there is stuff to scroll to in that instance). – Seth Carnegie May 22 '11 at 20:59
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.