I've noticed that if I import my user control into a project and try to resize it, it doesn't resize everything (TextBox) within the user control. Of course, this makes perfect sense. I would expect it to do that.

However, what is the optimal solution to get the TextBox within it to resize when the user control is resized? Would I just handle the Resize event and adjust the size of the TextBox to the current size of the User Control, or is there another solution, or perhaps, attribute, to handle this sort of behavior for me?

Thanks.