我有一个程序,文本框中会有注释。我希望文本框能够自行调整大小,因此它适合内容。
private void rg_pending_RowFormatting(object sender, RowFormattingEventArgs e)
{
which code i will place here
}
答案 0 :(得分:0)
试试这个
Size size = TextRenderer.MeasureText(textBox1.Text, textBox1.Font);
textBox1.Width = size.Width;
textBox1.Height = size.Height;