I have a SplitContainer in my form.
On the 1st panel I have a TreeView and a ListView on the 2nd. (Classic)
Now I want to limit the size of the 1st panel (with the TreeView) to 250 pixels wide.
I wish to block the separator from moving too much (or too less).
How do I do that?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can use SplitContainer.Panel1MinSize property.

SplitContainer1.Panel1MinSize = 250;
link|improve this answer
Ummm... Min-imum size? – Vercas Jun 17 '11 at 20:11
@Vercas are you looking to set max size? You can set the Panel1MinSize and Panel2MinSize and let max depend on the window size. – Bala R Jun 17 '11 at 20:12
1  
Yes, but I figured it out now. splitContainer1.Panel2MinSize = splitContainer1.Width - 250 + splitContainer1.SplitterWidth; – Vercas Jun 17 '11 at 20:13
feedback

First, if you want to constrain the TreeView to be EXACTLY 250px, set the FixedPanel to be Panel1, set the IsSplitterFixed property to True, and set the Panel1MinSize to 250. This basically makes the split graphical only; the splitter will default to a size large enough for the TreeView, and will not move.

If you want to constrain the TreeView to be AT LEAST 250px, simply set Panel1MinSize to be 250. This will prevent the user from making the panel SMALLER than that, though they can make it LARGER. There is no maximum constraint, but you can get the effect of one by setting a maximum size for the window and a minimum size for the other panel of the SplitContainer.

link|improve this answer
Uh... Sorry but Bala's answer led me into solving my problem. – Vercas Jun 17 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

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