A user is not allowed to resize a TextBox control vertically. The height of a TextBox is locked to the ideal height that a textbox should be.
What’s more, Visual Studio doesn’t even provide you vertical drag handles:

How do i provide the same mechanism on my UserControl?
I will elaborate on Hans’ comment. You can associate specialized code (called a Designer) with a UserControl so that when it is placed on a form in Visual Studio, the user is limited in how they can configure your control.
Add a reference to
System.Designin your project.Use the following sample code: