C#调整文本框以使用c#调整内容

时间:2017-01-29 05:04:30

标签: c# asp.net

我有一个程序,文本框中会有注释。我希望文本框能够自行调整大小,因此它适合内容。

enter image description here

 private void rg_pending_RowFormatting(object sender, RowFormattingEventArgs e)
        {
            which code i will place here
        }

1 个答案:

答案 0 :(得分:0)

试试这个

Size size = TextRenderer.MeasureText(textBox1.Text, textBox1.Font);
textBox1.Width = size.Width;
textBox1.Height = size.Height;