I have two multiline textboxes separated within a splitContainer. When I drag the splitter left or right I would like the textboxes to resize accordingly. How do I do this? I am using Microsoft Visual C# 2008 Express Edition. Thanks.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

If you set the Dock property of textboxes to Dock.Fill, this should happen for you.

link|improve this answer
Thanks for the tip, kaizen! – Jim Fell Jan 22 '10 at 20:47
feedback

I believe all you need to do is set the anchor property to Top, Left, Bottom, Right true.

Control..::.Anchor Property

Gets or sets the edges of the container to which a control is bound and determines how a control is resized with its parent.

link|improve this answer
feedback

You should Dock them in each panel.

link|improve this answer
This is only true if the text boxes fill the panels they are children of. – Chris Kannon Jan 22 '10 at 20:46
feedback

Two ways:

  1. Set the Textbox.Anchor property to Top, Left, Bottom and Right.
  2. Set the Textbox.Dock property to Fill.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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