vote up 0 vote down star

I have a Windows Forms application that on it I have a RichTextBox, like this: Window Example

At this size it's all ok, but if the user maximaze or resize the window, the RichTextBox stays at the same size, but how to resize the RichTextBox too?

flag

3 Answers

vote up 2 vote down check

There are two options, docking and anchoring. In this simple form, an anchor is probably easiest. Just select the control, and adjust the Anchor property to Top, Left, Right, and Bottom.

Also, docking and anchoring will behave differently. Choose the one that works best for you.

link|flag
vote up 1 vote down

You can dock it to the form.

link|flag
vote up 0 vote down

In this case, as Darin Dimitrov said, docking is fine. In more complex layouts, you can set the anchor. That lets controls move relative to the right border instead of the left, for example.

link|flag

Your Answer

Get an OpenID
or

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