I have a Panel that I\'m creating programmatically; additionally I\'m adding several components to it.
Panel
One of these components is a Label w
Label
Just use the AutoSize property, set it back to True.
AutoSize
True
Set the MaximumSize property to, say, (60, 0) so it can't grow horizontally, only vertically.
MaximumSize
(60, 0)