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.
| |||
|
feedback
|
|
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:
Detailed discussion here: http://social.msdn.microsoft.com/Forums/en-IE/winforms/thread/6b9c2c72-e91a-40f0-a835-c12328490c0c | |||||||||||
feedback
|
Scrollbarsproperty toVerticalwon't work? – debracey May 22 '11 at 20:29Scrollbarson myPaneland 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