vote up 0 vote down star

In Winforms (.NET 2.0+), Form has AutoScrollMinSize so you can set the minimum area that the scrollbars help you maintain. What's the equivalent in ToolStripContainer.ContentPanel (ie: ToolStripContainer)? All of the methods I can find (AutoScroll, AutoScrollMargin, AutoScrollMinSize, etc.) say "This property is not relevant for this class."

flag

2 Answers

vote up 1 vote down

In Winforms vb.net 2008, you can use AutoScrollMinSize even though it doesn't come up in Intellisense. It is inherited from the ScrollableControl class.

ToolStripContainer1.TopToolStripPanel.AutoScrollMinSize = New Size(200, 200)
link|flag
vote up 0 vote down check

Apparently this area doesn't have these kinds of attributes. The closest you can come is to dock a container (eg: Panel) and use the container's AutoScrollMinSize.

link|flag

Your Answer

Get an OpenID
or

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