I\'d like to know if there\'s a better approach to this problem. I want to resize a label (vertically) to accomodate certain amount of text. My label has a fixed width (abou
Size maxSize = new Size(495, int.MaxValue); _label.Height = TextRenderer.MeasureText(_label.Text , _label.Font, maxSize).Height;